From 04e270e6994fca36a4157a34ed142080b4d1e9b5 Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Mon, 9 Dec 2024 16:17:33 +0100 Subject: [PATCH] fix crash --- Linphone/core/conference/ConferenceInfoCore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linphone/core/conference/ConferenceInfoCore.cpp b/Linphone/core/conference/ConferenceInfoCore.cpp index a3a57b4e1..280aa1bc8 100644 --- a/Linphone/core/conference/ConferenceInfoCore.cpp +++ b/Linphone/core/conference/ConferenceInfoCore.cpp @@ -105,7 +105,7 @@ ConferenceInfoCore::ConferenceInfoCore(std::shared_ptr auto cleanedClonedAddress = accountAddress->clone(); cleanedClonedAddress->clean(); auto address = Utils::coreStringToAppString(cleanedClonedAddress->asStringUriOnly()); - App::postCoreAsync([this, address]() { setOrganizerAddress(address); }); + App::postCoreAsync([this, address]() { mOrganizerAddress = address; }); } } });