mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
this fixes #1047
This commit is contained in:
parent
3dfc38d892
commit
8f0d925bdf
1 changed files with 6 additions and 0 deletions
|
|
@ -1574,6 +1574,12 @@ FilterParser.prototype.parse = function(raw) {
|
|||
s = '*';
|
||||
}
|
||||
|
||||
// https://github.com/gorhill/uBlock/issues/1047
|
||||
// Hostname-anchored makes no sense if matching all requests.
|
||||
if ( s === '*' ) {
|
||||
this.hostnameAnchored = false;
|
||||
}
|
||||
|
||||
// plain hostname?
|
||||
this.hostnamePure = this.hostnameAnchored && reHostnameRule.test(s);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue