Fix follow relationships not loading after notifications fetch (#6746)

th-downstream
Eugen Rochko 7 years ago committed by GitHub
parent 8d6d74b319
commit f2e5501822

@ -24,7 +24,7 @@ defineMessages({
const fetchRelatedRelationships = (dispatch, notifications) => {
const accountIds = notifications.filter(item => item.type === 'follow').map(item => item.account.id);
if (accountIds > 0) {
if (accountIds.length > 0) {
dispatch(fetchRelationships(accountIds));
}
};

Loading…
Cancel
Save