From 0052dc123b4bda190a34ab454b7d72f233ca4e94 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Tue, 15 Dec 2020 09:36:04 -0500 Subject: [PATCH] Fix `no-csp-reports` default enabled switch state Related feedback: - https://github.com/gorhill/uBlock/commit/7d90f97aa1cbf2728508506f6dd7a75c054b85d1#commitcomment-45138096 --- src/js/start.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/start.js b/src/js/start.js index b86e45c07..509aa3c4f 100644 --- a/src/js/start.js +++ b/src/js/start.js @@ -223,7 +223,6 @@ const fromFetch = function(to, fetched) { const createDefaultProps = function() { const fetchableProps = { 'dynamicFilteringString': [ - 'no-csp-reports: * true', 'behind-the-scene * * noop', 'behind-the-scene * image noop', 'behind-the-scene * 3p noop', @@ -234,6 +233,7 @@ const createDefaultProps = function() { ].join('\n'), 'urlFilteringString': '', 'hostnameSwitchesString': [ + 'no-csp-reports: * true', 'no-large-media: behind-the-scene false', ].join('\n'), 'lastRestoreFile': '',