mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Improve href-sanitizer scriptlet
Related issue: https://github.com/uBlockOrigin/uAssets/issues/26709#issuecomment-2569993803
This commit is contained in:
parent
7f78d19597
commit
551c6bc6eb
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ export function urlSkip(url, blocked, steps, directive = {}) {
|
|||
}
|
||||
// URI component
|
||||
if ( step === '-uricomponent' ) {
|
||||
urlout = self.decodeURIComponent(urlin);
|
||||
urlout = decodeURIComponent(urlin);
|
||||
continue;
|
||||
}
|
||||
// Enable skip of blocked requests
|
||||
|
|
|
|||
Loading…
Reference in a new issue