Преглед на файлове

Fix TypeError on follow notification (#6950)

`notification.status` may not be present, e.g. follow notification.
master
unarist преди 6 години
committed by Eugen Rochko
родител
ревизия
41452e8302
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. +3
    -1
      app/javascript/mastodon/actions/notifications.js

+ 3
- 1
app/javascript/mastodon/actions/notifications.js Целия файл

@@ -43,7 +43,9 @@ export function updateNotifications(notification, intlMessages, intlLocale) {
const playSound = getState().getIn(['settings', 'notifications', 'sounds', notification.type], true);

dispatch(importFetchedAccount(notification.account));
dispatch(importFetchedStatus(notification.status));
if (notification.status) {
dispatch(importFetchedStatus(notification.status));
}

dispatch({
type: NOTIFICATIONS_UPDATE,


Зареждане…
Отказ
Запис