This commit is contained in:
tamaina 2021-04-24 01:37:29 +09:00
parent d0c973d842
commit 05bde9b24e
1 changed files with 3 additions and 3 deletions

View File

@ -59,17 +59,17 @@ self.addEventListener('push', ev => {
case 'readAllNotifications':
for (const n of await self.registration.getNotifications()) {
if (n.data.type === 'notification') n.close();
if (n?.data?.type === 'notification') n.close();
}
break;
case 'readAllMessagingMessages':
for (const n of await self.registration.getNotifications()) {
if (n.data.type === 'unreadMessagingMessage') n.close();
if (n?.data?.type === 'unreadMessagingMessage') n.close();
}
break;
case 'readNotifications':
for (const n of await self.registration.getNotifications()) {
if (data.body.notificationIds?.includes(n.data.body.id)) {
if (data.body?.notificationIds?.includes(n.data.body.id)) {
n.close();
}
}