fix crash

This commit is contained in:
Gaelle Braud 2024-12-09 16:17:33 +01:00
parent 0f9539f37e
commit 04e270e699

View file

@ -105,7 +105,7 @@ ConferenceInfoCore::ConferenceInfoCore(std::shared_ptr<linphone::ConferenceInfo>
auto cleanedClonedAddress = accountAddress->clone();
cleanedClonedAddress->clean();
auto address = Utils::coreStringToAppString(cleanedClonedAddress->asStringUriOnly());
App::postCoreAsync([this, address]() { setOrganizerAddress(address); });
App::postCoreAsync([this, address]() { mOrganizerAddress = address; });
}
}
});