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

This commit is contained in:
Eugen Rochko 2018-03-12 03:20:56 +01:00 committed by GitHub
parent 8b14726f5b
commit 4f7f6b3922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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