When adding calls to a conference - enter the conference again if it was paused

This commit is contained in:
Christophe Deschamps 2022-12-04 18:38:59 +01:00
parent 9ba95b024c
commit ff5bafb7c0

View file

@ -236,7 +236,7 @@ class ConferenceViewModel {
try? conf.addParticipant(call: call)
}
}
if (conf.isIn) {
if (!conf.isIn) {
Log.i("[Conference] Conference was paused, resuming it")
let _ = conf.enter()
}