logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git
commit: 41452e83028148b3ef6e5888e9bd3b16fd608ec7
parent 9ed5eebd7ce8381af77dd2918678202a0776af4a
Author: unarist <m.unarist@gmail.com>
Date:   Thu, 29 Mar 2018 19:59:12 +0900

Fix TypeError on follow notification (#6950)

`notification.status` may not be present, e.g. follow notification.

Diffstat:

Mapp/javascript/mastodon/actions/notifications.js4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 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,