mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-07 06:55:38 +01:00
Fix processing of incoming notifications for unfilterable types (#33429)
This commit is contained in:
parent
2e936785b7
commit
655c4a5ebb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue