From 34cea709246a7f8c476f85d2fe34e5af7811298b Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 14 Mar 2025 10:47:14 -0400 Subject: [PATCH] Disable obsolete cache-control workaround for Firefox Related issue: https://github.com/uBlockOrigin/uBlock-issues/issues/3576 This is the first step, a trivial code change which disable the injection of `Cache-Control` header in Firefox. In the next dev cycle, the second step will be to remove all the code related to `Cache-Control` injection. --- src/js/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/background.js b/src/js/background.js index b648ee9c0..058eee5e5 100644 --- a/src/js/background.js +++ b/src/js/background.js @@ -53,7 +53,7 @@ const hiddenSettingsDefault = { cacheStorageCompression: true, cacheStorageCompressionThreshold: 65536, cacheStorageMultithread: 2, - cacheControlForFirefox1376932: 'no-cache, no-store, must-revalidate', + cacheControlForFirefox1376932: 'unset', cloudStorageCompression: true, cnameIgnoreList: 'unset', cnameIgnore1stParty: true,