mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 17:17:57 +01:00
Code review; fixes #920
This commit is contained in:
parent
09deb9906e
commit
d4ef9254dc
1 changed files with 1 additions and 1 deletions
|
@ -931,7 +931,7 @@ FilterGenericHnAnchoredHostname.prototype.match = function(url) {
|
|||
if ( pageHostnameRegister.slice(-this.hostname.length) !== this.hostname ) {
|
||||
return false;
|
||||
}
|
||||
return FilterGenericHnAnchored.prototype.match.call(this. url);
|
||||
return FilterGenericHnAnchored.prototype.match.call(this, url);
|
||||
};
|
||||
|
||||
FilterGenericHnAnchoredHostname.fid = FilterGenericHnAnchoredHostname.prototype.fid = '||_h';
|
||||
|
|
Loading…
Reference in a new issue