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
th-downstream
Rakib Hasan 8 years ago
parent 4909069b7b
commit 620cba2e2a

@ -103,8 +103,12 @@ export function fetchContext(id) {
dispatch(fetchContextSuccess(id, response.data.ancestors, response.data.descendants));
dispatch(fetchStatusCard(id));
}).catch(error => {
if (error.response.status == 404){
dispatch(deleteStatusSuccess(id));
dispatch(deleteFromTimelines(id));
}else{
dispatch(fetchContextFail(id, error));
}
});
};
};

Loading…
Cancel
Save