mirror of https://github.com/gorhill/uBlock.git
Support disabling advanced setting `cacheControlForFirefox1376932`
Related feedback: - https://github.com/uBlockOrigin/uBlock-issues/issues/229#issuecomment-520810161 Setting `cacheControlForFirefox1376932` to `unset` will prevent modification of the `Cache-Control` header.
This commit is contained in:
parent
970164e78d
commit
52925ba2f9
|
@ -483,8 +483,9 @@ const onHeadersReceived = function(details) {
|
|||
// Use `no-cache` instead of `no-cache, no-store, must-revalidate`, this
|
||||
// allows Firefox's offline mode to work as expected.
|
||||
if ( (filteredHTML || modifiedHeaders) && dontCacheResponseHeaders ) {
|
||||
let i = headerIndexFromName('cache-control', responseHeaders);
|
||||
let cacheControl = µb.hiddenSettings.cacheControlForFirefox1376932;
|
||||
if ( cacheControl !== 'unset' ) {
|
||||
let i = headerIndexFromName('cache-control', responseHeaders);
|
||||
if ( i !== -1 ) {
|
||||
responseHeaders[i].value = cacheControl;
|
||||
} else {
|
||||
|
@ -492,6 +493,7 @@ const onHeadersReceived = function(details) {
|
|||
}
|
||||
modifiedHeaders = true;
|
||||
}
|
||||
}
|
||||
|
||||
if ( modifiedHeaders ) {
|
||||
return { responseHeaders: responseHeaders };
|
||||
|
|
Loading…
Reference in New Issue