mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-02 11:19:30 +00:00
The value param to the setParam() and setUriParam() of an Address is no optional.
This commit is contained in:
parent
aafd069305
commit
097732c15f
2 changed files with 3 additions and 3 deletions
|
|
@ -88,12 +88,12 @@ public:
|
|||
|
||||
bool hasParam (const std::string ¶mName) const;
|
||||
const std::string &getParamValue (const std::string ¶mName) const;
|
||||
bool setParam (const std::string ¶mName, const std::string ¶mValue);
|
||||
bool setParam (const std::string ¶mName, const std::string ¶mValue = "");
|
||||
bool setParams (const std::string ¶ms);
|
||||
|
||||
bool hasUriParam (const std::string &uriParamName) const;
|
||||
const std::string &getUriParamValue (const std::string &uriParamName) const;
|
||||
bool setUriParam (const std::string &uriParamName, const std::string &uriParamValue);
|
||||
bool setUriParam (const std::string &uriParamName, const std::string &uriParamValue = "");
|
||||
bool setUriParams (const std::string &uriParams);
|
||||
|
||||
private:
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ void ClientGroupChatRoom::addParticipants (const list<Address> &addresses, const
|
|||
session->configure(LinphoneCallOutgoing, nullptr, nullptr, me->getAddress(), focus->getAddress());
|
||||
session->initiateOutgoing();
|
||||
Address addr = me->getAddress();
|
||||
addr.setParam("text", "");
|
||||
addr.setParam("text");
|
||||
session->getPrivate()->getOp()->set_contact_address(addr.getPrivate()->getInternalAddress());
|
||||
session->startInvite(nullptr, subject);
|
||||
d->setState(ChatRoom::State::CreationPending);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue