Description
Our Jigasi clients cannot mute themselves and start unmuted although in our Jigasi config we have set:
org.jitsi.jigasi.ENABLE_SIP_STARTMUTED=true
The log does show:
jicofo-1 | Jicofo 2025-12-02 11:55:34.392 INFO: [37] [room=<the room>@muc.meet.jitsi meeting_id=dcbe906f-847d-48a3-aff2-797bb05acf4a] JitsiMeetConferenceImpl.handleMuteRequest#1620: Will mute <the room>@muc.meet.jitsi/<the Jigasi client id> on behalf of <the room>@muc.meet.jitsi/<the Jigasi client id> for AUDIO
But the calculated colibriMuteState is false.
I am wondering whether this line is wrong:
|
colibriMuteState = !chatRoom.isMemberAllowedToUnmute(toBeMutedJid, MediaType.AUDIO); |
The mute state only depends on the permission to unmute. Shouldn't it also depend on doMute? Or am I missing something?
Description
Our Jigasi clients cannot mute themselves and start unmuted although in our Jigasi config we have set:
The log does show:
But the calculated
colibriMuteStateisfalse.I am wondering whether this line is wrong:
jicofo/jicofo/src/main/java/org/jitsi/jicofo/conference/JitsiMeetConferenceImpl.java
Line 1607 in 6301519
The mute state only depends on the permission to unmute. Shouldn't it also depend on
doMute? Or am I missing something?