diff options
author | Saúl Ibarra Corretgé <s@saghul.net> | 2023-05-09 15:53:51 +0200 |
---|---|---|
committer | Saúl Ibarra Corretgé <s@saghul.net> | 2023-05-09 16:09:44 +0200 |
commit | c6ffffaa1816a9fb420fe4dd7f60e8cff52bc29c (patch) | |
tree | 12f1b9feedddab92ba130aa44b6e1b7dd91e7c70 | |
parent | d98082db27862853b9820c6e2da3441f1c67b8bb (diff) |
fix(external-api) enable iframe sandbox after update
The sandbox can now be manually enabled, so let's do that.
-rw-r--r-- | app/features/conference/components/Conference.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/features/conference/components/Conference.js b/app/features/conference/components/Conference.js index 5325a15..9720b73 100644 --- a/app/features/conference/components/Conference.js +++ b/app/features/conference/components/Conference.js @@ -211,7 +211,8 @@ class Conference extends Component<Props, State> { configOverwrite, onload: this._onIframeLoad, parentNode: this._ref.current, - roomName + roomName, + sandbox: 'allow-scripts allow-same-origin allow-popups allow-forms' }; this._api = new JitsiMeetExternalAPI(host, { |