From: Eugen Rochko Date: Sun, 15 Jan 2017 13:41:49 +0000 (+0100) Subject: Fix #449 - don't do relationships fetch for empty array of IDs X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=1d5cbfa35680e5780d27a92a136ce3dbdeb90002;p=mastodon.git Fix #449 - don't do relationships fetch for empty array of IDs --- 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 => {