1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Remove pointless dependency on location

Related discussion:
- https://github.com/gorhill/uBlock/pull/3839#discussion_r691502793
This commit is contained in:
Raymond Hill 2021-08-19 07:23:53 -04:00
parent b19393d8dc
commit 68675ed1cd
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -121,7 +121,7 @@ const Parser = class {
// https://github.com/uBlockOrigin/uBlock-issues/issues/1146
// From https://codemirror.net/doc/manual.html#option_specialChars
this.reInvalidCharacters = /[\x00-\x1F\x7F-\x9F\xAD\u061C\u200B-\u200F\u2028\u2029\uFEFF\uFFF9-\uFFFC]/;
this.punycoder = new URL(globals.location);
this.punycoder = new URL('https://ublock0.invalid/');
// TODO: mind maxTokenLength
this.reGoodRegexToken
= /[^\x01%0-9A-Za-z][%0-9A-Za-z]{7,}|[^\x01%0-9A-Za-z][%0-9A-Za-z]{1,6}[^\x01%0-9A-Za-z]/;