From 655c4a5ebbcd8f953aad6e93909c7f666d7541e8 Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 2 Jan 2025 14:22:25 +0100 Subject: [PATCH] Fix processing of incoming notifications for unfilterable types (#33429) --- app/javascript/mastodon/actions/notification_groups.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/actions/notification_groups.ts b/app/javascript/mastodon/actions/notification_groups.ts index aa7f50da4e..4386325481 100644 --- a/app/javascript/mastodon/actions/notification_groups.ts +++ b/app/javascript/mastodon/actions/notification_groups.ts @@ -155,7 +155,7 @@ export const processNewNotificationForGroups = createAppAsyncThunk( const showInColumn = activeFilter === 'all' - ? notificationShows[notification.type] + ? notificationShows[notification.type] !== false : activeFilter === notification.type; if (!showInColumn) return;