about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-13 21:02:10 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-13 21:02:10 +0100
commitbcfa49aea7958924dfebc2f9df84d886cf4fbba3 (patch)
treea968b90cc99d61ff009f05feb2a650425ff71cac /app
parent4286d49adebf934c950c97e45ba996253242539b (diff)
Fix another mistake with infinite user list for following
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/components/actions/accounts.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/actions/accounts.jsx b/app/assets/javascripts/components/actions/accounts.jsx
index b997c4472..4a0777a64 100644
--- 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
   };
 };