update sdk
This commit is contained in:
parent
023b07743a
commit
8ac30ed393
2 changed files with 3 additions and 3 deletions
|
|
@ -1555,7 +1555,7 @@ VariantObject *Utils::getCurrentCallChat(CallGui *call) {
|
||||||
if (linphoneChatRoom != nullptr) {
|
if (linphoneChatRoom != nullptr) {
|
||||||
qDebug() << "Chatroom created with" << callModel->getRemoteAddress()->asStringUriOnly();
|
qDebug() << "Chatroom created with" << callModel->getRemoteAddress()->asStringUriOnly();
|
||||||
auto id = linphoneChatRoom->getIdentifier();
|
auto id = linphoneChatRoom->getIdentifier();
|
||||||
auto params = linphoneChatRoom->getCurrentParams();
|
auto params = linphoneChatRoom->getParams();
|
||||||
auto chatCore = ChatCore::create(linphoneChatRoom);
|
auto chatCore = ChatCore::create(linphoneChatRoom);
|
||||||
return QVariant::fromValue(new ChatGui(chatCore));
|
return QVariant::fromValue(new ChatGui(chatCore));
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -1592,7 +1592,7 @@ VariantObject *Utils::getChatForAddress(QString address) {
|
||||||
linphoneChatRoom = ToolModel::createChatForAddress(linAddr);
|
linphoneChatRoom = ToolModel::createChatForAddress(linAddr);
|
||||||
if (linphoneChatRoom != nullptr) {
|
if (linphoneChatRoom != nullptr) {
|
||||||
qDebug() << "Chatroom created with" << linAddr->asStringUriOnly();
|
qDebug() << "Chatroom created with" << linAddr->asStringUriOnly();
|
||||||
auto params = linphoneChatRoom->getCurrentParams();
|
auto params = linphoneChatRoom->getParams();
|
||||||
auto chatCore = ChatCore::create(linphoneChatRoom);
|
auto chatCore = ChatCore::create(linphoneChatRoom);
|
||||||
return QVariant::fromValue(new ChatGui(chatCore));
|
return QVariant::fromValue(new ChatGui(chatCore));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
2
external/linphone-sdk
vendored
2
external/linphone-sdk
vendored
|
|
@ -1 +1 @@
|
||||||
Subproject commit 7de88db26dcc9e9b165811e5efc5ca9d2108112b
|
Subproject commit 94eb2e8dd4c03168cb180095412a6f7120730f42
|
||||||
Loading…
Reference in a new issue