Merge pull request #6358 from ivesbai/ivesbai-patch-rocketchat-videobridge-url

Add missing braces to get the right URL
pull/5788/head^2
Gabriel Engel 9 years ago committed by GitHub
commit 69a7e47867
  1. 2
      packages/rocketchat-videobridge/client/public/external_api.js

@ -112,7 +112,7 @@ function JitsiMeetExternalAPI(domain, room_name, width, height, parentNode, conf
if (width) this.iframeHolder.style.width = width + "px";
if (height) this.iframeHolder.style.height = height + "px";
this.frameName = "jitsiConferenceFrame" + id;
this.url = noSsl ? "http" : "https" + "://" + domain + "/";
this.url = (noSsl ? "http" : "https") + "://" + domain + "/";
if (room_name) this.url += room_name;
this.url += "#jitsi_meet_external_api_id=" + id;

Loading…
Cancel
Save