From d5fefa23fd8b0bbacdba6c4bdbcef82922a01e4f Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 21 Aug 2026 16:23:19 +0300 Subject: [PATCH] fix error on non-status notifications --- src/stores/notifications.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/stores/notifications.js b/src/stores/notifications.js index 99d56e0d0..a12ce8133 100644 --- a/src/stores/notifications.js +++ b/src/stores/notifications.js @@ -190,10 +190,12 @@ export const useNotificationsStore = defineStore('notifications', { } this.idStore.set(notification.id, notification) - this.statusNotificationRelations.set( - notification.status, - this.idStore.get(notification.id), - ) + if (notification.status) { + this.statusNotificationRelations.set( + notification.status, + this.idStore.get(notification.id), + ) + } maybeShowNotification( useMergedConfigStore().mergedConfig.notificationVisibility,