mirror of https://github.com/gorhill/uBlock.git
fix #2283
This commit is contained in:
parent
a217ca42c9
commit
605dcc9199
|
@ -1735,7 +1735,7 @@ FilterParser.prototype.parse = function(raw) {
|
||||||
// Abort if type is only for unsupported types, otherwise
|
// Abort if type is only for unsupported types, otherwise
|
||||||
// toggle off `unsupported` bit.
|
// toggle off `unsupported` bit.
|
||||||
if ( this.types & this.unsupportedTypeBit ) {
|
if ( this.types & this.unsupportedTypeBit ) {
|
||||||
this.types &= ~(this.unsupportedTypeBit | this.allNetRequestTypeBits);
|
this.types &= ~this.unsupportedTypeBit;
|
||||||
if ( this.types === 0 ) {
|
if ( this.types === 0 ) {
|
||||||
this.unsupported = true;
|
this.unsupported = true;
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Reference in New Issue