logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
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:

Mapp/javascript/mastodon/actions/statuses.js2+-
Mapp/javascript/mastodon/actions/timelines.js2+-
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, }; };