Skip to content

Commit

Permalink
fix(external-api) enable iframe sandbox after update
Browse files Browse the repository at this point in the history
The sandbox can now be manually enabled, so let's do that.
  • Loading branch information
saghul committed May 9, 2023
1 parent d98082d commit c6ffffa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/features/conference/components/Conference.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, {
Expand Down

0 comments on commit c6ffffa

Please sign in to comment.