summaryrefslogtreecommitdiff
path: root/src/bg
diff options
context:
space:
mode:
authorhackademix2020-03-25 14:58:34 +0100
committerhackademix2020-03-25 14:59:48 +0100
commit24aedad38c9d8fd97107031570a5bab007f3d0c2 (patch)
tree3f2522e9a6d47e6b6fb729550bd5c117c1f516ae /src/bg
parentf10166117553bb36f0348e3c57f395abfff82e1a (diff)
downloadnoscript-24aedad38c9d8fd97107031570a5bab007f3d0c2.tar.gz
noscript-24aedad38c9d8fd97107031570a5bab007f3d0c2.tar.xz
noscript-24aedad38c9d8fd97107031570a5bab007f3d0c2.zip
Further refresh syntax parsing leniency (thanks insertscript).
Diffstat (limited to 'src/bg')
-rw-r--r--src/bg/ReportingCSP.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bg/ReportingCSP.js b/src/bg/ReportingCSP.js
index 08e7a90..fc08527 100644
--- a/src/bg/ReportingCSP.js
+++ b/src/bg/ReportingCSP.js
@@ -37,7 +37,7 @@ function ReportingCSP(reportURI, reportGroup) {
} else if (blocker && /^(Location|Refresh)$/i.test(h.name)) {
// neutralize any HTTP redirection to data: URLs, like Chromium
let url = /^R/i.test(h.name)
- ? h.value.replace(/^[^,;]*[,;]\W*url[^=]*=[^!#$%&()*+,/:;=?@[\]\w.,~-]*/i, "") : h.value;
+ ? h.value.replace(/^[^,;]*[,;](?:\W*url[^=]*=)?[^!#$%&()*+,/:;=?@[\]\w.,~-]*/i, "") : h.value;
if (/^data:/i.test(url)) {
h.value = h.value.slice(0, -url.length) + "data:";
}