mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-16 23:42:39 +01:00
Fix plain exceptions not overriding block filters using header=
option
Related issue: https://github.com/uBlockOrigin/uBlock-issues/issues/3347
This commit is contained in:
parent
8de454ccca
commit
1cb660b94e
@ -19,28 +19,15 @@
|
|||||||
Home: https://github.com/gorhill/uBlock
|
Home: https://github.com/gorhill/uBlock
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* globals vAPI */
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
/******************************************************************************/
|
|
||||||
|
|
||||||
import { queueTask, dropTask } from './tasks.js';
|
|
||||||
import BidiTrieContainer from './biditrie.js';
|
|
||||||
import HNTrieContainer from './hntrie.js';
|
|
||||||
import { CompiledListReader } from './static-filtering-io.js';
|
|
||||||
import * as sfp from './static-filtering-parser.js';
|
import * as sfp from './static-filtering-parser.js';
|
||||||
|
|
||||||
import {
|
import { domainFromHostname, hostnameFromNetworkURL } from './uri-utils.js';
|
||||||
domainFromHostname,
|
import { dropTask, queueTask } from './tasks.js';
|
||||||
hostnameFromNetworkURL,
|
|
||||||
} from './uri-utils.js';
|
|
||||||
|
|
||||||
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#browser_compatibility
|
import BidiTrieContainer from './biditrie.js';
|
||||||
//
|
import { CompiledListReader } from './static-filtering-io.js';
|
||||||
// This import would be best done dynamically, but since dynamic imports are
|
|
||||||
// not supported by older browsers, for now a static import is necessary.
|
|
||||||
import { FilteringContext } from './filtering-context.js';
|
import { FilteringContext } from './filtering-context.js';
|
||||||
|
import HNTrieContainer from './hntrie.js';
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
@ -3798,7 +3785,7 @@ class FilterCompiler {
|
|||||||
isJustOrigin() {
|
isJustOrigin() {
|
||||||
if ( this.optionUnitBits !== FROM_BIT ) { return false; }
|
if ( this.optionUnitBits !== FROM_BIT ) { return false; }
|
||||||
if ( this.isRegex ) { return false; }
|
if ( this.isRegex ) { return false; }
|
||||||
if ( /[\/~]/.test(this.fromDomainOpt) ) { return false; }
|
if ( /[/~]/.test(this.fromDomainOpt) ) { return false; }
|
||||||
if ( this.pattern === '*' ) { return true; }
|
if ( this.pattern === '*' ) { return true; }
|
||||||
if ( this.anchor !== 0b010 ) { return false; }
|
if ( this.anchor !== 0b010 ) { return false; }
|
||||||
if ( /^(?:http[s*]?:(?:\/\/)?)$/.test(this.pattern) ) { return true; }
|
if ( /^(?:http[s*]?:(?:\/\/)?)$/.test(this.pattern) ) { return true; }
|
||||||
@ -5156,6 +5143,10 @@ StaticNetFilteringEngine.prototype.matchHeaders = function(fctxt, headers) {
|
|||||||
if ( r !== 0 && $isBlockImportant !== true ) {
|
if ( r !== 0 && $isBlockImportant !== true ) {
|
||||||
if ( this.realmMatchString(HEADERS_REALM | ALLOW_REALM, typeBits, partyBits) ) {
|
if ( this.realmMatchString(HEADERS_REALM | ALLOW_REALM, typeBits, partyBits) ) {
|
||||||
r = 2;
|
r = 2;
|
||||||
|
} else if ( this.realmMatchString(ALLOW_REALM, typeBits, partyBits) ) {
|
||||||
|
r = 2;
|
||||||
|
}
|
||||||
|
if ( r === 2 ) {
|
||||||
if ( this.realmMatchString(HEADERS_REALM | BLOCKIMPORTANT_REALM, typeBits, partyBits) ) {
|
if ( this.realmMatchString(HEADERS_REALM | BLOCKIMPORTANT_REALM, typeBits, partyBits) ) {
|
||||||
r = 1;
|
r = 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user