Skip to content

Commit 551c6bc

Browse files
committed
Improve href-sanitizer scriptlet
Related issue: uBlockOrigin/uAssets#26709 (comment)
1 parent 7f78d19 commit 551c6bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/urlskip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export function urlSkip(url, blocked, steps, directive = {}) {
121121
}
122122
// URI component
123123
if ( step === '-uricomponent' ) {
124-
urlout = self.decodeURIComponent(urlin);
124+
urlout = decodeURIComponent(urlin);
125125
continue;
126126
}
127127
// Enable skip of blocked requests

0 commit comments

Comments
 (0)