From adb6c34124aca89a24ef1d7e9054ff9be9d8914f Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Mon, 23 Feb 2026 18:43:24 +0100 Subject: [PATCH] fix crash when no conference organizer --- Linphone/core/conference/ConferenceInfoCore.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Linphone/core/conference/ConferenceInfoCore.cpp b/Linphone/core/conference/ConferenceInfoCore.cpp index ab7b58141..9cfcb2fec 100644 --- a/Linphone/core/conference/ConferenceInfoCore.cpp +++ b/Linphone/core/conference/ConferenceInfoCore.cpp @@ -78,7 +78,9 @@ ConferenceInfoCore::ConferenceInfoCore(std::shared_ptr mDuration = conferenceInfo->getDuration(); mEndDateTime = mDateTime.addSecs(mDuration * 60); mIsScheduled = mDateTime.isValid(); - mOrganizerAddress = Utils::coreStringToAppString(conferenceInfo->getOrganizer()->asStringUriOnly()); + mOrganizerAddress = conferenceInfo->getOrganizer() + ? Utils::coreStringToAppString(conferenceInfo->getOrganizer()->asStringUriOnly()) + : QString(); mOrganizerName = mConferenceInfoModel->getOrganizerName(); mSubject = Utils::coreStringToAppString(conferenceInfo->getSubject()); mDescription = Utils::coreStringToAppString(conferenceInfo->getDescription());