fix(external_api) add autoplay capabilities to created iframe

Should fix https://github.com/jitsi/jitsi-meet/issues/7037
This commit is contained in:
Shoolpani Dubey 2021-02-09 12:22:42 +02:00 committed by GitHub
parent 299927fcad
commit a57b967f2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
const frameName = `jitsiConferenceFrame${id}`;
this._frame = document.createElement('iframe');
this._frame.allow = 'camera; microphone; display-capture';
this._frame.allow = 'camera; microphone; display-capture; autoplay;';
this._frame.src = this._url;
this._frame.name = frameName;
this._frame.id = frameName;