Skip to content

Commit

Permalink
remove dedupe "feature"; rewrite code for display message
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoWeio committed Apr 27, 2020
1 parent 452ac82 commit 3b1a22f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/components/ErrorBoundary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,16 @@ export default {
// console.error("Error captured!");
// console.error(err, vm, info);
//default error message
let msg = (err.name && err.message) ? (err.name + ": " + err.message + ". See dev console (F12) and/or server logs for more info.") : err;
//use server error response if available
//err.isAxiosError doesn't help much here…
// fallback
let msg = err;
// use server error response if available; err.isAxiosError doesn't help much here…
if (err.response && err.response.data && err.response.data.message) {
msg = err.response.data.message;
} else if (err.name && err.message) {
msg = `${err.name}: ${err.message}.
See dev console (F12) and/or server logs for more info.`;
}
//dedupe
if (this.errors.some(e => e.msg == msg)) return;
this.errors.push({
msg: msg,
time: new Date().toISOString(),
Expand Down

0 comments on commit 3b1a22f

Please sign in to comment.