fix (boot): more user friendly boot error

This commit is contained in:
Mickael Kerjean
2022-11-25 16:41:51 +11:00
parent e7bb5b052a
commit 2b623cac34
3 changed files with 7 additions and 10 deletions

View File

@ -31,7 +31,7 @@ class LogManager {
url += "from.lineNo="+lineNo+"&";
url += "from.columnNo="+columnNo;
if (error) url += "error="+encodeURIComponent(error.message)+"&";
return http_post(url).catch();
return http_post(url).catch(() => {});
}
}