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…
Reference in a new issue