commit: 1d5cbfa35680e5780d27a92a136ce3dbdeb90002
parent: cc1eccc8bc6b6f49cef0f4cf6a74ced8f3262b54
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Sun, 15 Jan 2017 14:41:49 +0100
Fix #449 - don't do relationships fetch for empty array of IDs
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/app/assets/javascripts/components/actions/accounts.jsx b/app/assets/javascripts/components/actions/accounts.jsx
@@ -486,6 +486,10 @@ export function expandFollowingFail(id, error) {
export function fetchRelationships(account_ids) {
return (dispatch, getState) => {
+ if (account_ids.length === 0) {
+ return;
+ }
+
dispatch(fetchRelationshipsRequest(account_ids));
api(getState).get(`/api/v1/accounts/relationships?${account_ids.map(id => `id[]=${id}`).join('&')}`).then(response => {