do not clone conference info object on model creation as it blocks the creation

fix typo in cancelCreation calling
This commit is contained in:
Gaelle Braud 2026-01-28 10:29:40 +01:00
parent 751ddb117e
commit 4a763ee99d
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ DEFINE_ABSTRACT_OBJECT(ConferenceInfoModel)
ConferenceInfoModel::ConferenceInfoModel(const std::shared_ptr<linphone::ConferenceInfo> &conferenceInfo,
QObject *parent)
// TODO : remove cloning when a fix will be done in SDK (#SDK-1001 ticket)
: mConferenceInfo(conferenceInfo->clone()) {
: mConferenceInfo(conferenceInfo) {
mustBeInLinphoneThread(getClassName());
}

View file

@ -321,7 +321,7 @@ AbstractMainPage {
meetingSetup.conferenceInfoGui.core.save()
//: "Création de la réunion en cours "
mainWindow.showLoadingPopup(qsTr("meeting_schedule_creation_in_progress"), true, function () {
meetingSetup.conferenceInfoGui.core.cancelCreation()
meetingSetup.conferenceInfoGui.core.lCancelCreation()
})
}
}