Skip to content

Commit 93577ec

Browse files
committed
[mv3] Fix removeparam conversion
Related issue: uBlockOrigin/uAssets#30636
1 parent 60a1b43 commit 93577ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/static-net-filtering.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4774,7 +4774,7 @@ StaticNetFilteringEngine.prototype.dnrFromCompiled = function(op, context, ...ar
47744774
}
47754775
}
47764776
} else if ( urlFilter.startsWith('||') ) {
4777-
if ( urlFilter.includes(paramName) === false ) {
4777+
if ( urlFilter.toLowerCase().includes(paramName.toLowerCase()) === false ) {
47784778
rule.condition.urlFilter = `${rule.condition.urlFilter}*^${paramName}=`;
47794779
}
47804780
}

0 commit comments

Comments
 (0)