mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
this fixes #1206
This commit is contained in:
parent
5591ff34f1
commit
06b44c7ceb
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
|
|
||||||
"name": "uBlock Origin",
|
"name": "uBlock Origin",
|
||||||
"version": "1.5.4",
|
"version": "1.5.5",
|
||||||
|
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_extShortDesc__",
|
"description": "__MSG_extShortDesc__",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
|
|
||||||
"name": "uBlock Origin",
|
"name": "uBlock Origin",
|
||||||
"version": "1.5.4",
|
"version": "1.5.5",
|
||||||
|
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_extShortDesc__",
|
"description": "__MSG_extShortDesc__",
|
||||||
|
|
|
@ -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 a new issue