Skip to content
Snippets Groups Projects
Unverified Commit ae923786 authored by tamaina's avatar tamaina Committed by GitHub
Browse files

fix(sw, notification): Don't issue an event if there is no affect (#8979)

* test

* ]v]
parent 714c80bf
No related branches found
No related tags found
No related merge requests found
......@@ -12,13 +12,15 @@ export async function readNotification(
if (notificationIds.length === 0) return;
// Update documents
await Notifications.update({
const result = await Notifications.update({
id: In(notificationIds),
isRead: false,
}, {
isRead: true,
});
if (result.affected === 0) return;
if (!await Users.getHasUnreadNotification(userId)) return postReadAllNotifications(userId);
else return postReadNotifications(userId, notificationIds);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment