Allow overlay/background iframes to make XHRs

This commit is contained in:
Max Goodhart
2020-07-28 14:19:10 -07:00
parent 8a62977758
commit 9a35d568c2
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ function Background({ streams }) {
<BackgroundIFrame
key={s._id}
src={s.link}
sandbox="allow-scripts"
sandbox="allow-scripts allow-same-origin"
allow="autoplay"
/>
))}

View File

@@ -62,7 +62,7 @@ function Overlay({ config, views, streams }) {
<OverlayIFrame
key={s._id}
src={s.link}
sandbox="allow-scripts"
sandbox="allow-scripts allow-same-origin"
allow="autoplay"
/>
))}