mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Fixed issue with active speaker layout
This commit is contained in:
parent
04ae18c1ae
commit
db8b6f2dfb
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ class ConferenceViewModel : ViewModel() {
|
|||
|
||||
if (conferenceParticipantDevices.value.orEmpty().size == 2) {
|
||||
secondParticipantJoinedEvent.value = Event(true)
|
||||
} else if (conferenceParticipantDevices.value.orEmpty().size == 3) {
|
||||
} else if (conferenceParticipantDevices.value.orEmpty().size > 2) {
|
||||
moreThanTwoParticipantsJoinedEvent.value = Event(true)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue