diff options
Diffstat (limited to 'src/client/app.vue')
| -rw-r--r-- | src/client/app.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/app.vue b/src/client/app.vue index c10ba9c9d9..3453baa280 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -328,8 +328,7 @@ export default Vue.extend({ }, async onNotification(notification) { - const t = this.$store.state.i.includingNotificationTypes; - if (!!t && !t.includes(notification.type)) { + if (this.$store.state.i.mutingNotificationTypes.includes(notification.type)) { return; } if (document.visibilityState === 'visible') { |