]> cat aescling's git repositories - mastodon.git/commitdiff
No loading bars for cards, no failure if it 404s (that's expected)
authorEugen Rochko <eugen@zeonfederated.com>
Fri, 20 Jan 2017 00:07:53 +0000 (01:07 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 20 Jan 2017 00:07:53 +0000 (01:07 +0100)
app/assets/javascripts/components/actions/cards.jsx

index 808f1835b0850c90099f72d2296238bc444345ba..ee421d5d7c9679cf18d157d71368fe61dbc7db48 100644 (file)
@@ -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
   };
 };