fix: Handle errors without response (#4274)

local
Sorin Davidoi 7 years ago committed by Eugen Rochko
parent bbdcfd6baf
commit 015269914e
  1. 2
      app/javascript/mastodon/actions/statuses.js
  2. 2
      app/javascript/mastodon/actions/timelines.js

@ -113,7 +113,7 @@ export function fetchContext(id) {
dispatch(fetchContextSuccess(id, response.data.ancestors, response.data.descendants));
}).catch(error => {
if (error.response.status === 404) {
if (error.response && error.response.status === 404) {
dispatch(deleteFromTimelines(id));
}

@ -105,7 +105,7 @@ export function refreshTimelineFail(timeline, error, skipLoading) {
timeline,
error,
skipLoading,
skipAlert: error.response.status === 404,
skipAlert: error.response && error.response.status === 404,
};
};

Loading…
Cancel
Save