Fixed conference view issue when adding third participant
This commit is contained in:
parent
081c5b4f79
commit
ee9a843a6e
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ class CallsViewModel : ViewModel() {
|
|||
if (call.state == Call.State.Paused || call.state == Call.State.Pausing) {
|
||||
addCallToPausedList(call)
|
||||
} else {
|
||||
if (call.conference != null && call.core.isInConference) {
|
||||
if (call.conference != null) {
|
||||
conferenceList.add(CallViewModel(call))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue