1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-02 17:19:38 +02:00
This commit is contained in:
Raymond Hill 2018-01-13 09:42:04 -05:00
parent a217ca42c9
commit 605dcc9199
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1735,7 +1735,7 @@ FilterParser.prototype.parse = function(raw) {
// Abort if type is only for unsupported types, otherwise
// toggle off `unsupported` bit.
if ( this.types & this.unsupportedTypeBit ) {
this.types &= ~(this.unsupportedTypeBit | this.allNetRequestTypeBits);
this.types &= ~this.unsupportedTypeBit;
if ( this.types === 0 ) {
this.unsupported = true;
return this;