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

last-status
Nolan Lawson 2021-11-13 10:57:36 -08:00 zatwierdzone przez GitHub
rodzic fdf4110dad
commit 0df4b724ca
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

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