Small bugfix in the webapp

This commit is contained in:
Blue (Lukas Rieger) 2020-08-08 10:40:14 +02:00
parent c23335df7c
commit a0e3b0c2af

View File

@ -109,7 +109,7 @@ export default class BlueMap {
await this.ui.load();
this.start();
}).catch(error => {
this.onLoadError("Initialization: " + error.toString());
this.onLoadError("Initialization: " + (error ? error.toString() : "unknown"));
});
}