mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 17:17:57 +01:00
this fixes #846
This commit is contained in:
parent
ac85a7c979
commit
da63253145
1 changed files with 1 additions and 1 deletions
|
@ -1016,7 +1016,7 @@ FilterHostnameDict.prototype.matchesExactly = function(hn) {
|
|||
return false;
|
||||
}
|
||||
if ( typeof bucket === 'object' ) {
|
||||
return bucket.hasOwnProperty(hn) !== undefined;
|
||||
return bucket.hasOwnProperty(hn);
|
||||
}
|
||||
if ( bucket.charAt(0) === ' ' ) {
|
||||
return bucket.indexOf(' ' + hn + ' ') !== -1;
|
||||
|
|
Loading…
Reference in a new issue