added if else clause in fetchContext
So that if we get an error, then we will only delete status if it is an 404 error
This commit is contained in:
		
							parent
							
								
									910df0f795
								
							
						
					
					
						commit
						dfd4a42b35
					
				@ -103,8 +103,12 @@ export function fetchContext(id) {
 | 
			
		||||
      dispatch(fetchContextSuccess(id, response.data.ancestors, response.data.descendants));
 | 
			
		||||
      dispatch(fetchStatusCard(id));
 | 
			
		||||
    }).catch(error => {
 | 
			
		||||
      dispatch(deleteStatusSuccess(id));
 | 
			
		||||
      dispatch(deleteFromTimelines(id));
 | 
			
		||||
      if (error.response.status == 404){
 | 
			
		||||
        dispatch(deleteStatusSuccess(id));
 | 
			
		||||
        dispatch(deleteFromTimelines(id));
 | 
			
		||||
      }else{
 | 
			
		||||
        dispatch(fetchContextFail(id, error));
 | 
			
		||||
      }
 | 
			
		||||
    });
 | 
			
		||||
  };
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user