This commit is contained in:
gorhill 2016-01-11 01:04:51 -05:00
parent 997086df99
commit 778cd739ef
1 changed files with 2 additions and 2 deletions

View File

@ -1455,8 +1455,8 @@ FilterContainer.prototype.retrieveDomainSelectors = function(request) {
} }
// entity filter buckets are always plain js array // entity filter buckets are always plain js array
if ( (bucket = this.entityFilters[r.entity]) ) { if ( this.entityFilters.hasOwnProperty(r.entity) ) {
r.cosmeticHide = r.cosmeticHide.concat(bucket); r.cosmeticHide = r.cosmeticHide.concat(this.entityFilters[r.entity]);
} }
// No entity exceptions as of now // No entity exceptions as of now