mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
[mv3] Fix removeparam conversion
Related issue: https://github.com/uBlockOrigin/uAssets/issues/30636
This commit is contained in:
parent
60a1b43d71
commit
93577ecca1
1 changed files with 1 additions and 1 deletions
|
|
@ -4774,7 +4774,7 @@ StaticNetFilteringEngine.prototype.dnrFromCompiled = function(op, context, ...ar
|
|||
}
|
||||
}
|
||||
} else if ( urlFilter.startsWith('||') ) {
|
||||
if ( urlFilter.includes(paramName) === false ) {
|
||||
if ( urlFilter.toLowerCase().includes(paramName.toLowerCase()) === false ) {
|
||||
rule.condition.urlFilter = `${rule.condition.urlFilter}*^${paramName}=`;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue