fix: fix for when notification is undefined (#2093)

This commit is contained in:
Nolan Lawson 2021-11-13 10:57:36 -08:00 committed by GitHub
parent fdf4110dad
commit 0df4b724ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,9 @@ export function fetchNotification (notificationsStore, statusesStore, accountsSt
notificationsStore.get(id).onsuccess = e => {
const notification = e.target.result
callback(notification)
if (!notification) {
return
}
fetchAccount(accountsStore, notification[ACCOUNT_ID], account => {
notification.account = account
})