Skip to content
Snippets Groups Projects
Commit 69a7e478 authored by Gabriel Engel's avatar Gabriel Engel Committed by GitHub
Browse files

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

Add missing braces to get the right URL
parents 149094fa 50535831
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment