From 6babfb31fe30beca2a025f1ce245d6f75893fdc6 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Mon, 23 Feb 2026 21:27:52 +1100 Subject: [PATCH] Fix seenNotificationV2 --- src/stores/notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/notification.js b/src/stores/notification.js index b61e46df..7287babf 100644 --- a/src/stores/notification.js +++ b/src/stores/notification.js @@ -400,7 +400,7 @@ export const useNotificationStore = defineStore('Notification', () => { if (ref) { ref.seen = true; } - database.seenNotificationV2(ref); + database.seenNotificationV2(notificationId); } function handleNotificationAccept(args) {