about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-15 14:41:49 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-15 14:47:39 +0100
commit1d5cbfa35680e5780d27a92a136ce3dbdeb90002 (patch)
tree8d0574eb0b85439f906f5589cd2126d2984dd077
parentcc1eccc8bc6b6f49cef0f4cf6a74ced8f3262b54 (diff)
Fix #449 - don't do relationships fetch for empty array of IDs
-rw-r--r--app/assets/javascripts/components/actions/accounts.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/actions/accounts.jsx b/app/assets/javascripts/components/actions/accounts.jsx
index 7ae87f30e..e1519d7b5 100644
--- 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 => {