diff --git a/src/state/models/feeds/notifications.ts b/src/state/models/feeds/notifications.ts index 49dfea64a8..12db9510d4 100644 --- a/src/state/models/feeds/notifications.ts +++ b/src/state/models/feeds/notifications.ts @@ -545,6 +545,12 @@ export class NotificationsFeedModel { ): Promise { const promises = [] const itemModels: NotificationsFeedItemModel[] = [] + items = items.filter(item => { + return ( + this.rootStore.preferences.getLabelPreference(item.labels).pref !== + 'hide' + ) + }) for (const item of groupNotifications(items)) { const itemModel = new NotificationsFeedItemModel( this.rootStore,