Skip to content
Snippets Groups Projects
Commit 4757107f authored by Max Franke's avatar Max Franke Committed by Pedro Beschorner Marin
Browse files

fix(breakout-room): avoid muteOnStart at breakout room

Quick fix to prevent the moderator who joins the
breakout room from being unable to unmute himself
parent 078c2da4
No related branches found
No related tags found
No related merge requests found
......@@ -555,6 +555,12 @@ public class ParamsProcessorUtil {
muteOnStart = Boolean.parseBoolean(params.get(ApiParams.MUTE_ON_START));
}
// when a moderator joins in a breakout room only with the audio, and the muteOnStart is set to true,
// the moderator is unable to unmute himself, because they don't have an icon to do so
if (isBreakout) {
muteOnStart = false;
}
meeting.setMuteOnStart(muteOnStart);
Boolean meetingKeepEvents = defaultKeepEvents;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment