- Do not do pause when removing a participant from the conference and let the SDK doing it.

This commit is contained in:
Julien Wadel 2020-06-10 12:39:25 +02:00
parent 0ac9f08b9f
commit c2c60f5f1b

View file

@ -160,10 +160,10 @@ void ConferenceHelperModel::ConferenceAddModel::update () {
while(address != allLinphoneAddresses.end() && (*address)->asStringUriOnly() != callAddress)
++address;
if(address == allLinphoneAddresses.end()){// Not in conference list : put in pause and remove it from conference if it's the case
call->pause();
if( call->getParams()->getLocalConferenceMode() ){// Remove conference if it is not yet requested
CoreManager::getInstance()->getCore()->removeFromConference(call);
}
}else
call->pause();
}
}
}