]> cat aescling's git repositories - mastodon.git/commitdiff
Fix another mistake with infinite user list for following
authorEugen Rochko <eugen@zeonfederated.com>
Sun, 13 Nov 2016 20:02:10 +0000 (21:02 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Sun, 13 Nov 2016 20:02:10 +0000 (21:02 +0100)
app/assets/javascripts/components/actions/accounts.jsx

index b997c4472d3005870d1d827695eae26c66507f17..4a0777a64c1feade79e7e6346a1ceea9217d2c6f 100644 (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
   };
 };