Fix #449 - don't do relationships fetch for empty array of IDs
This commit is contained in:
		
							parent
							
								
									cc1eccc8bc
								
							
						
					
					
						commit
						1d5cbfa356
					
				@ -486,6 +486,10 @@ export function expandFollowingFail(id, error) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
export function fetchRelationships(account_ids) {
 | 
					export function fetchRelationships(account_ids) {
 | 
				
			||||||
  return (dispatch, getState) => {
 | 
					  return (dispatch, getState) => {
 | 
				
			||||||
 | 
					    if (account_ids.length === 0) {
 | 
				
			||||||
 | 
					      return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    dispatch(fetchRelationshipsRequest(account_ids));
 | 
					    dispatch(fetchRelationshipsRequest(account_ids));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    api(getState).get(`/api/v1/accounts/relationships?${account_ids.map(id => `id[]=${id}`).join('&')}`).then(response => {
 | 
					    api(getState).get(`/api/v1/accounts/relationships?${account_ids.map(id => `id[]=${id}`).join('&')}`).then(response => {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user