mirror of https://github.com/gorhill/uBlock.git
this fixes #1206
This commit is contained in:
parent
5591ff34f1
commit
06b44c7ceb
|
@ -2,7 +2,7 @@
|
|||
"manifest_version": 2,
|
||||
|
||||
"name": "uBlock Origin",
|
||||
"version": "1.5.4",
|
||||
"version": "1.5.5",
|
||||
|
||||
"default_locale": "en",
|
||||
"description": "__MSG_extShortDesc__",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"manifest_version": 2,
|
||||
|
||||
"name": "uBlock Origin",
|
||||
"version": "1.5.4",
|
||||
"version": "1.5.5",
|
||||
|
||||
"default_locale": "en",
|
||||
"description": "__MSG_extShortDesc__",
|
||||
|
|
|
@ -1455,8 +1455,8 @@ FilterContainer.prototype.retrieveDomainSelectors = function(request) {
|
|||
}
|
||||
|
||||
// entity filter buckets are always plain js array
|
||||
if ( (bucket = this.entityFilters[r.entity]) ) {
|
||||
r.cosmeticHide = r.cosmeticHide.concat(bucket);
|
||||
if ( this.entityFilters.hasOwnProperty(r.entity) ) {
|
||||
r.cosmeticHide = r.cosmeticHide.concat(this.entityFilters[r.entity]);
|
||||
}
|
||||
// No entity exceptions as of now
|
||||
|
||||
|
|
Loading…
Reference in New Issue