Browse Source

Add allow-forms to video/playlist embed

We need it when the video is password protected
Chocobozzz 2 months ago
parent
commit
78e4cc30c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/src/root-helpers/video.ts

+ 1 - 1
client/src/root-helpers/video.ts

@@ -16,7 +16,7 @@ function buildVideoOrPlaylistEmbed (options: {
   iframe.src = embedUrl
   iframe.frameBorder = '0'
   iframe.allowFullscreen = true
-  iframe.sandbox.add('allow-same-origin', 'allow-scripts', 'allow-popups')
+  iframe.sandbox.add('allow-same-origin', 'allow-scripts', 'allow-popups', 'allow-forms')
 
   if (responsive) {
     const wrapper = document.createElement('div')