Fix starting a meeting when it has been cancelled.

This commit is contained in:
Julien Wadel 2022-12-07 15:07:24 +01:00
parent c7481fb840
commit eb88267d5c

View file

@ -367,9 +367,11 @@ QVariantMap CallsListModel::createChatRoom(const QString& subject, const int& se
}
void CallsListModel::prepareConferenceCall(ConferenceInfoModel * model){
auto app = App::getInstance();
app->smartShowWindow(app->getCallsWindow());
emit callConferenceAsked(model);
if(model->getConferenceInfoState() != LinphoneEnums::ConferenceInfoStateCancelled) {
auto app = App::getInstance();
app->smartShowWindow(app->getCallsWindow());
emit callConferenceAsked(model);
}
}
int CallsListModel::addAllToConference(){