Fixed build due to onActiveSpeakerParticipantDevice signature change

This commit is contained in:
Sylvain Berfini 2025-03-13 13:53:43 +01:00
parent df92297d6c
commit 10eaafce74

View file

@ -201,8 +201,9 @@ class ConferenceViewModel : ViewModel() {
override fun onActiveSpeakerParticipantDevice(
conference: Conference,
participantDevice: ParticipantDevice
participantDevice: ParticipantDevice?
) {
if (participantDevice == null) return
Log.i(
"[Conference] Participant [${participantDevice.address.asStringUriOnly()}] is currently being displayed as active speaker"
)