[FIX] Appending 'false' to Jitsi URL (#18430)

pull/18452/head
Guilherme Gazzo 6 years ago committed by Diego Sampaio
parent 5f58a4a233
commit de27d47f52
No known key found for this signature in database
GPG Key ID: E060152B30502562
  1. 2
      app/videobridge/client/views/videoFlexTab.js

@ -131,7 +131,7 @@ Template.videoFlexTab.onRendered(function() {
return Tracker.nonreactive(async () => {
await start();
const queryString = accessToken && `?jwt=${ accessToken }`;
const queryString = accessToken ? `?jwt=${ accessToken }` : '';
const newWindow = window.open(`${ (noSsl ? 'http://' : 'https://') + domain }/${ jitsiRoom }${ queryString }`, jitsiRoom);
if (newWindow) {

Loading…
Cancel
Save