From da5e19fa9854e46ce383f6bc42c8d20df79cb076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 23 Jan 2023 17:01:42 +0100 Subject: [PATCH] fix(external-api) fix no longer allowing popups These are used by the Electron app to open links in the chat, for example. --- modules/API/external/external_api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/API/external/external_api.js b/modules/API/external/external_api.js index 880dd70168..f542d13f6b 100644 --- a/modules/API/external/external_api.js +++ b/modules/API/external/external_api.js @@ -391,7 +391,7 @@ export default class JitsiMeetExternalAPI extends EventEmitter { this._frame.name = frameName; this._frame.id = frameName; this._setSize(height, width); - this._frame.sandbox = 'allow-scripts allow-same-origin'; + this._frame.sandbox = 'allow-scripts allow-same-origin allow-popups'; this._frame.setAttribute('allowFullScreen', 'true'); this._frame.style.border = 0;