We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b4354 commit 1783645Copy full SHA for 1783645
src/vector/jitsi/index.ts
@@ -241,7 +241,9 @@ function switchVisibleContainers() {
241
242
function toggleConferenceVisibility(inConference: boolean) {
243
document.getElementById("jitsiContainer").style.visibility = inConference ? 'unset' : 'hidden';
244
- document.getElementById("joinButtonContainer").style.visibility = inConference ? 'hidden' : 'unset';
+ // Video rooms have a separate UI for joining, so they should never show our join button
245
+ document.getElementById("joinButtonContainer").style.visibility =
246
+ (inConference || isVideoChannel) ? 'hidden' : 'unset';
247
}
248
249
function skipToJitsiSplashScreen() {
0 commit comments