forked from treehouse/mastodon
No loading bars for cards, no failure if it 404s (that's expected)
parent
f0de621e76
commit
c8e4b9c663
|
@ -11,6 +11,11 @@ export function fetchStatusCard(id) {
|
|||
api(getState).get(`/api/v1/statuses/${id}/card`).then(response => {
|
||||
dispatch(fetchStatusCardSuccess(id, response.data));
|
||||
}).catch(error => {
|
||||
if (error.response.status === 404) {
|
||||
// This is fine
|
||||
return;
|
||||
}
|
||||
|
||||
dispatch(fetchStatusCardFail(id, error));
|
||||
});
|
||||
};
|
||||
|
@ -19,7 +24,8 @@ export function fetchStatusCard(id) {
|
|||
export function fetchStatusCardRequest(id) {
|
||||
return {
|
||||
type: STATUS_CARD_FETCH_REQUEST,
|
||||
id
|
||||
id,
|
||||
skipLoading: true
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -27,7 +33,8 @@ export function fetchStatusCardSuccess(id, card) {
|
|||
return {
|
||||
type: STATUS_CARD_FETCH_SUCCESS,
|
||||
id,
|
||||
card
|
||||
card,
|
||||
skipLoading: true
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -35,6 +42,7 @@ export function fetchStatusCardFail(id, error) {
|
|||
return {
|
||||
type: STATUS_CARD_FETCH_FAIL,
|
||||
id,
|
||||
error
|
||||
error,
|
||||
skipLoading: true
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue