From: unarist Date: Thu, 29 Mar 2018 10:59:12 +0000 (+0900) Subject: Fix TypeError on follow notification (#6950) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=41452e83028148b3ef6e5888e9bd3b16fd608ec7;p=mastodon.git Fix TypeError on follow notification (#6950) `notification.status` may not be present, e.g. follow notification. --- diff --git a/app/javascript/mastodon/actions/notifications.js b/app/javascript/mastodon/actions/notifications.js index 7267b85bd..da77afbe0 100644 --- a/app/javascript/mastodon/actions/notifications.js +++ b/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,