Browse Source

Fix another mistake with infinite user list for following

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
bcfa49aea7
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      app/assets/javascripts/components/actions/accounts.jsx

+ 3
- 2
app/assets/javascripts/components/actions/accounts.jsx View File

@ -413,11 +413,12 @@ export function fetchFollowingRequest(id) {
};
};
export function fetchFollowingSuccess(id, accounts) {
export function fetchFollowingSuccess(id, accounts, next) {
return {
type: FOLLOWING_FETCH_SUCCESS,
id,
accounts
accounts,
next
};
};

Loading…
Cancel
Save