mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-16 11:53:13 +00:00
Fix another mistake with infinite user list for following
This commit is contained in:
parent
4286d49ade
commit
bcfa49aea7
|
@ -413,11 +413,12 @@ export function fetchFollowingRequest(id) {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export function fetchFollowingSuccess(id, accounts) {
|
export function fetchFollowingSuccess(id, accounts, next) {
|
||||||
return {
|
return {
|
||||||
type: FOLLOWING_FETCH_SUCCESS,
|
type: FOLLOWING_FETCH_SUCCESS,
|
||||||
id,
|
id,
|
||||||
accounts
|
accounts,
|
||||||
|
next
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue