Add error mesage

This commit is contained in:
Pieter Vander Vennet 2021-11-14 16:13:09 +01:00
parent 4358353859
commit 04e4ba769f

View file

@ -23,7 +23,6 @@ export default class DetermineLayout {
const layoutFromBase64 = decodeURIComponent(loadCustomThemeParam.data); const layoutFromBase64 = decodeURIComponent(loadCustomThemeParam.data);
if (layoutFromBase64.startsWith("http")) { if (layoutFromBase64.startsWith("http")) {
// The userLayout is actually an url
const layout = await DetermineLayout.LoadRemoteTheme(layoutFromBase64) const layout = await DetermineLayout.LoadRemoteTheme(layoutFromBase64)
return [layout, undefined] return [layout, undefined]
} }
@ -114,6 +113,7 @@ export default class DetermineLayout {
if (hash === undefined || hash.length < 10) { if (hash === undefined || hash.length < 10) {
DetermineLayout.ShowErrorOnCustomTheme("Could not load a theme from the hash", new FixedUiElement("Hash does not contain data")) DetermineLayout.ShowErrorOnCustomTheme("Could not load a theme from the hash", new FixedUiElement("Hash does not contain data"))
} }
this.ShowErrorOnCustomTheme("Could not parse the hash", new FixedUiElement(e))
return null; return null;
} }
} }