From: Eugen Rochko Date: Sun, 13 Nov 2016 20:02:10 +0000 (+0100) Subject: Fix another mistake with infinite user list for following X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=bcfa49aea7958924dfebc2f9df84d886cf4fbba3;p=mastodon.git Fix another mistake with infinite user list for following --- 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 }; };