Skip to content

Commit

Permalink
added credentialless for csp
Browse files Browse the repository at this point in the history
  • Loading branch information
salvatore committed Oct 16, 2024
1 parent c66316a commit 9646726
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/services/VideoServiceBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ class VideoServiceBase {
iframeAttributeList.push([ "mozallowfullscreen" ]);
iframeAttributeList.push([ "allowfullscreen" ]);
}
console.log('DDDDDDDD',this.options,this.env.options)

// to support CSP
if (this.options.credentialless === true) {
iframeAttributeList.push([ "credentialless" ]);
}
Expand Down

0 comments on commit 9646726

Please sign in to comment.