1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-07 03:12:33 +01:00

Code review; fixes #920

This commit is contained in:
Chris 2015-03-03 01:02:09 -07:00
parent 09deb9906e
commit d4ef9254dc

View File

@ -931,7 +931,7 @@ FilterGenericHnAnchoredHostname.prototype.match = function(url) {
if ( pageHostnameRegister.slice(-this.hostname.length) !== this.hostname ) { if ( pageHostnameRegister.slice(-this.hostname.length) !== this.hostname ) {
return false; return false;
} }
return FilterGenericHnAnchored.prototype.match.call(this. url); return FilterGenericHnAnchored.prototype.match.call(this, url);
}; };
FilterGenericHnAnchoredHostname.fid = FilterGenericHnAnchoredHostname.prototype.fid = '||_h'; FilterGenericHnAnchoredHostname.fid = FilterGenericHnAnchoredHostname.prototype.fid = '||_h';