mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-24 01:04:39 +01:00
fix (boot): boot error
This commit is contained in:
parent
0774023ace
commit
a0a8de2a8d
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ import "./assets/css/reset.scss";
|
|||
}
|
||||
return removeLoader().then(render);
|
||||
}).catch((e) => {
|
||||
const msg = navigator.onLine === false ? "OFFLINE" : "CAN'T LOAD FILESTASH";
|
||||
const msg = navigator.onLine === false ? "OFFLINE" : e.message || "CAN'T LOAD";
|
||||
Log.report(msg + " - " + (e && e.message), location.href);
|
||||
return removeLoaderWithAnimation().then(() => {
|
||||
$error(msg);
|
||||
|
|
|
|||
Loading…
Reference in a new issue