mirror of https://github.com/gorhill/uBlock.git
Do not decode query parameter name when used as token
Related feedback: - https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1628496
This commit is contained in:
parent
5381e3bfe2
commit
dea7184f30
|
@ -3362,7 +3362,7 @@ class FilterCompiler {
|
|||
if ( pattern.startsWith('|') ) {
|
||||
return this.extractTokenFromRegex('\\b' + pattern.slice(1));
|
||||
}
|
||||
this.extractTokenFromPattern(encodeURIComponent(pattern).toLowerCase());
|
||||
this.extractTokenFromPattern(pattern.toLowerCase());
|
||||
}
|
||||
|
||||
hasNoOptionUnits() {
|
||||
|
|
Loading…
Reference in New Issue