mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 01:09:19 +00:00
Fix starting a meeting when it has been cancelled.
This commit is contained in:
parent
c7481fb840
commit
eb88267d5c
1 changed files with 5 additions and 3 deletions
|
|
@ -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(){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue