diff options
author | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2022-11-13 18:53:59 +0000 |
---|---|---|
committer | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2022-11-13 18:53:59 +0000 |
commit | a2db64b12b33b7967aa1f633231253e67ad73216 (patch) | |
tree | d56ee3e48b3eb40404002d208f576ae009862e13 /lib | |
parent | e86ca8a43668caa5efff1274781c10520488b1b9 (diff) | |
parent | bdedc41cbc60cc699e44ff323b945c276af32122 (diff) | |
download | pleroma-a2db64b12b33b7967aa1f633231253e67ad73216.tar.gz pleroma-a2db64b12b33b7967aa1f633231253e67ad73216.zip |
Merge branch 'fix-typo-in-csp-report-to-header-name' into 'develop'
Fix typo in CSP Report-To header name
See merge request pleroma/pleroma!3768
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 b89948cec..cd1bae235 100644 --- a/lib/pleroma/web/plugs/http_security_plug.ex +++ b/lib/pleroma/web/plugs/http_security_plug.ex @@ -68,7 +68,7 @@ defmodule Pleroma.Web.Plugs.HTTPSecurityPlug do ] } - [{"reply-to", Jason.encode!(report_group)} | headers] + [{"report-to", Jason.encode!(report_group)} | headers] else headers end |