We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f7d327 commit 69c75e7Copy full SHA for 69c75e7
src/renderer/utils/notifications/filters/filter.ts
@@ -42,9 +42,11 @@ export function filterNotifications(
42
}
43
44
if (hasStateFilters(settings)) {
45
- return settings.filterStates.some((state) =>
46
- filterNotificationByState(notification, state),
47
- );
+ passesFilters =
+ passesFilters &&
+ settings.filterStates.some((state) =>
48
+ filterNotificationByState(notification, state),
49
+ );
50
51
52
0 commit comments