From 3fd2b856fe1e423e70edb6a9872ab560e58cf897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 23 Feb 2026 21:35:24 -0500 Subject: [PATCH] add mising await --- src/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notifications.js b/src/notifications.js index 79f447f201..c22d050a87 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -373,7 +373,7 @@ Notifications.pushGroups = async function (notification, groupNames) { Notifications.rescind = async function (nids) { nids = Array.isArray(nids) ? nids : [nids]; - nids = Notifications.filterExists(nids); + nids = await Notifications.filterExists(nids); if (!nids.length) { return; }