commit: bcfa49aea7958924dfebc2f9df84d886cf4fbba3
parent: 4286d49adebf934c950c97e45ba996253242539b
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Sun, 13 Nov 2016 21:02:10 +0100
Fix another mistake with infinite user list for following
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app/assets/javascripts/components/actions/accounts.jsx b/app/assets/javascripts/components/actions/accounts.jsx
@@ -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
};
};