diff options
author | Henry Jameson <me@hjkos.com> | 2023-05-07 15:24:09 +0300 |
---|---|---|
committer | Henry Jameson <me@hjkos.com> | 2023-05-07 15:24:09 +0300 |
commit | f8ef4924ecab5ba6851eee82845624bc15f868de (patch) | |
tree | cbc5f40ce914c306d33a26372fb5b6982d66b30a /lib | |
parent | c0d11da2d8edc57ef88163c06a19aad3e28d14db (diff) | |
download | pleroma-f8ef4924ecab5ba6851eee82845624bc15f868de.tar.gz pleroma-f8ef4924ecab5ba6851eee82845624bc15f868de.zip |
fix whitespace
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/plugs/http_security_plug.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/plugs/http_security_plug.ex b/lib/pleroma/web/plugs/http_security_plug.ex index df46cfa0c..a3166bc96 100644 --- a/lib/pleroma/web/plugs/http_security_plug.ex +++ b/lib/pleroma/web/plugs/http_security_plug.ex @@ -93,7 +93,7 @@ defmodule Pleroma.Web.Plugs.HTTPSecurityPlug do img_src = "img-src 'self' data: blob:" media_src = "media-src 'self'" - connect_src = ["connect-src 'self' blob:", static_url, ?\s, websocket_url] + connect_src = ["connect-src 'self' blob: ", static_url, ?\s, websocket_url] # Strict multimedia CSP enforcement only when MediaProxy is enabled {img_src, media_src, connect_src} = |