mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Replace all instances, not just the first one
This commit is contained in:
parent
11bbee93fe
commit
4a8efe1ed8
1 changed files with 1 additions and 1 deletions
|
|
@ -5502,7 +5502,7 @@ function urlSkip(directive, url, blocked, steps) {
|
|||
}
|
||||
// Safe Base64
|
||||
if ( step === '-safebase64' ) {
|
||||
urlout = urlin.replace(/[-_]/, safeBase64Replacer);
|
||||
urlout = urlin.replace(/[-_]/g, safeBase64Replacer);
|
||||
urlout = self.atob(urlout);
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue