mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
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…
Add table
Reference in a new issue