From 7708d0584bb7bc64e9b35cd8029a8e0435394c28 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 11 Jul 2022 10:13:23 -0400 Subject: [PATCH] Remove the ability to hide yourself in video rooms (#22806) --- src/vector/jitsi/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vector/jitsi/index.ts b/src/vector/jitsi/index.ts index 8af13ee255..969ce9e5ed 100644 --- a/src/vector/jitsi/index.ts +++ b/src/vector/jitsi/index.ts @@ -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);