diff options
author | Sorin Davidoi <sorin.davidoi@gmail.com> | 2017-07-19 19:38:50 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-19 19:38:50 +0200 |
commit | 015269914e0908799a4a958fe8af39cb81984986 (patch) | |
tree | 6d44af5671627d63eebb8f9a07e55d0f72b23cbb | |
parent | bbdcfd6baf8da01098eb377c3d3579b23ae54d80 (diff) |
fix: Handle errors without response (#4274)
-rw-r--r-- | app/javascript/mastodon/actions/statuses.js | 2 | ||||
-rw-r--r-- | app/javascript/mastodon/actions/timelines.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/actions/statuses.js b/app/javascript/mastodon/actions/statuses.js index 8d385715c..2204e0b14 100644 --- 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 index dd14cb1cd..5c0cd93c7 100644 --- 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, }; }; |