forked from AkkomaGang/akkoma
Merge branch 'bugfix/csp-unproxied' into 'develop'
http_security_plug.ex: Fix non-proxied media See merge request pleroma/pleroma!2610
This commit is contained in:
commit
d23b3701d8
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ defp csp_string do
|
|||
sources = get_proxy_and_attachment_sources()
|
||||
{[img_src, sources], [media_src, sources]}
|
||||
else
|
||||
{img_src, media_src}
|
||||
{[img_src, " https:"], [media_src, " https:"]}
|
||||
end
|
||||
|
||||
connect_src = ["connect-src 'self' blob: ", static_url, ?\s, websocket_url]
|
||||
|
|
Loading…
Reference in a new issue