1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00
This commit is contained in:
gorhill 2015-02-19 23:25:29 -05:00
parent ac85a7c979
commit da63253145

View File

@ -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;