Skip to content

Commit

Permalink
Improve href-sanitizer scriptlet
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jan 5, 2025
1 parent 7f78d19 commit 551c6bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/urlskip.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 551c6bc

Please sign in to comment.