mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
this fixes #1468
This commit is contained in:
parent
fb551417ed
commit
5a2e9bc1a7
1 changed files with 2 additions and 2 deletions
|
|
@ -1287,8 +1287,8 @@ FilterBucket.fromSelfie = function() {
|
|||
/******************************************************************************/
|
||||
|
||||
var FilterParser = function() {
|
||||
this.reHostnameRule1 = /^[0-9a-z][0-9a-z.-]*[0-9a-z]$/;
|
||||
this.reHostnameRule2 = /^\**[0-9a-z][0-9a-z.-]*[0-9a-z]\^?$/;
|
||||
this.reHostnameRule1 = /^[0-9a-z][0-9a-z.-]*[0-9a-z]$/i;
|
||||
this.reHostnameRule2 = /^\**[0-9a-z][0-9a-z.-]*[0-9a-z]\^?$/i;
|
||||
this.reCleanupHostnameRule2 = /^\**|\^$/g;
|
||||
this.reHasWildcard = /[\^\*]/;
|
||||
this.reCanTrimCarets1 = /^[^*]*$/;
|
||||
|
|
|
|||
Loading…
Reference in a new issue