Skip to content

Commit ab54a3d

Browse files
authored
[FIX] Chrome 64 breaks jitsi-meet iframe
Adds the allow microphone and camera tag in the iframe for jitsi
1 parent 8594050 commit ab54a3d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/rocketchat-videobridge/client/public/external_api.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ function JitsiMeetExternalAPI(domain, room_name, width, height, parentNode, conf
138138
this.frame.width = "100%";
139139
this.frame.height = "100%";
140140
this.frame.setAttribute("allowFullScreen", "true");
141+
this.frame.setAttribute("allow", "microphone; camera");
141142
this.frame = this.iframeHolder.appendChild(this.frame);
142143
this.postis = Postis({
143144
window: this.frame.contentWindow,

0 commit comments

Comments
 (0)