Skip to content

Commit

Permalink
Remove the ability to hide yourself in video rooms (#22806)
Browse files Browse the repository at this point in the history
  • Loading branch information
robintown authored Jul 11, 2022
1 parent 017dfb6 commit 7708d05
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/vector/jitsi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,9 @@ function joinConference(audioDevice?: string | null, videoDevice?: string | null
];
// Hide all top bar elements
options.configOverwrite.conferenceInfo = { autoHide: [] };
// Remove the ability to hide your own tile, since we're hiding the
// settings button which would be the only way to get it back
options.configOverwrite.disableSelfViewSettings = true;
}

meetApi = new JitsiMeetExternalAPI(jitsiDomain, options);
Expand Down

0 comments on commit 7708d05

Please sign in to comment.