add mising await

This commit is contained in:
Barış Soner Uşaklı
2026-02-23 21:35:24 -05:00
parent ed421ca0c4
commit 3fd2b856fe

View File

@@ -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;
}