Fix loosing gruu when switching chat rooms.

Update SDK.
This commit is contained in:
Julien Wadel 2022-07-25 17:27:12 +02:00
parent 3a2dcfd350
commit 68cdf9df67
2 changed files with 4 additions and 3 deletions

View file

@ -89,8 +89,9 @@ ConferenceInfoModel::ConferenceInfoModel (QObject * parent) : QObject(parent){
mIsScheduled = false;
auto accountAddress = CoreManager::getInstance()->getCore()->getDefaultAccount()->getContactAddress();
if(accountAddress){
accountAddress->clean();
mConferenceInfo->setOrganizer(accountAddress);
auto cleanedClonedAddress = accountAddress->clone();
cleanedClonedAddress->clean();
mConferenceInfo->setOrganizer(cleanedClonedAddress);
}
}

@ -1 +1 @@
Subproject commit 01525275f73df3c5ae5dae338456ca04fa99d0be
Subproject commit b1d3f2d6db0879ddbe5e475b135256d2d477cab0