diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-04-09 05:02:48 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-04-10 09:33:47 +0200 |
commit | 92e19501949bac3825c23087e0aeba3109ea12d0 (patch) | |
tree | 155cce63b1c821f96174a4d0038ec73e473cc6ec /app/javascript/flavours/glitch/actions | |
parent | fa4b51a1100d794f78e895ac692530fb1c4540aa (diff) |
[Glitch] Fix glitched out "not found" message for non-existing profiles in web UI
Port 56f29c38b603a98e7b9715c48de022106d8da073 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/actions')
-rw-r--r-- | app/javascript/flavours/glitch/actions/alerts.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/actions/alerts.js b/app/javascript/flavours/glitch/actions/alerts.js index 50cd48a9e..b2c7ab76a 100644 --- a/app/javascript/flavours/glitch/actions/alerts.js +++ b/app/javascript/flavours/glitch/actions/alerts.js @@ -34,6 +34,11 @@ export function showAlertForError(error) { if (error.response) { const { data, status, statusText } = error.response; + if (status === 404 || status === 410) { + // Skip these errors as they are reflected in the UI + return {}; + } + let message = statusText; let title = `${status}`; |