commit: 015269914e0908799a4a958fe8af39cb81984986
parent: bbdcfd6baf8da01098eb377c3d3579b23ae54d80
Author: Sorin Davidoi <sorin.davidoi@gmail.com>
Date: Wed, 19 Jul 2017 19:38:50 +0200
fix: Handle errors without response (#4274)
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/javascript/mastodon/actions/statuses.js b/app/javascript/mastodon/actions/statuses.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));
}
diff --git a/app/javascript/mastodon/actions/timelines.js b/app/javascript/mastodon/actions/timelines.js
@@ -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,
};
};