mirror of https://github.com/gorhill/uBlock.git
this fixes #1206
This commit is contained in:
parent
997086df99
commit
778cd739ef
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue