This commit is contained in:
tamaina 2021-09-21 02:39:49 +09:00
parent 25f92c60d4
commit dbafb501a9
1 changed files with 2 additions and 4 deletions

View File

@ -157,12 +157,10 @@ self.addEventListener('notificationclick', <K extends keyof pushNotificationData
default:
if ('note' in data.body) {
client = await swos.openNote(data.body.note.id, id);
break;
}
if ('user' in data.body) {
} else if ('user' in data.body) {
client = await swos.openUser(getAcct(data.body.user), id);
break;
}
break;
}
}
break;