FIX: removes part of the 2.4 legacy code forgotten (#87)
no_ads_for_groups returns a list of ids
This commit is contained in:
parent
1d073e2a96
commit
c27d5f8e85
|
@ -51,19 +51,10 @@ export default Ember.Component.extend({
|
|||
return true;
|
||||
}
|
||||
|
||||
let noAdsGroups = this.siteSettings.no_ads_for_groups.split("|");
|
||||
|
||||
// TODO: Remove when 2.4 becomes the new stable. This is for backwards compatibility.
|
||||
const groupListUseIDs = this.site.group_list_use_ids;
|
||||
|
||||
let currentGroups = groups;
|
||||
if (groupListUseIDs) {
|
||||
currentGroups = currentGroups.map(g => g.id.toString());
|
||||
} else {
|
||||
currentGroups = currentGroups.map(g => g.name.toLowerCase());
|
||||
noAdsGroups = noAdsGroups.map(g => g.toLowerCase());
|
||||
}
|
||||
|
||||
let noAdsGroups = this.siteSettings.no_ads_for_groups
|
||||
.split("|")
|
||||
.filter(Boolean);
|
||||
let currentGroups = groups.map(g => g.id.toString());
|
||||
return !currentGroups.any(g => noAdsGroups.includes(g));
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue