diff options
author | Chris <chris@chrismatic.io> | 2015-03-03 01:02:09 -0700 |
---|---|---|
committer | Chris <chris@chrismatic.io> | 2015-03-03 01:02:09 -0700 |
commit | d4ef9254dc1715f1f696e51836a332e44cbf1f3b (patch) | |
tree | 98a000cbbc3b9f3e5d29c996b3349ad543617d6d /src/js/static-net-filtering.js | |
parent | 09deb9906e39d9f651f180a58c64608e326abd04 (diff) | |
download | uBlock-d4ef9254dc1715f1f696e51836a332e44cbf1f3b.zip uBlock-d4ef9254dc1715f1f696e51836a332e44cbf1f3b.tar.gz uBlock-d4ef9254dc1715f1f696e51836a332e44cbf1f3b.tar.bz2 |
Code review; fixes #920
Diffstat (limited to 'src/js/static-net-filtering.js')
-rw-r--r-- | src/js/static-net-filtering.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 85c3a31..29e4202 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -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'; |