better error messages

This commit is contained in:
serxa 2023-12-16 14:02:20 +00:00
parent 4bc93792db
commit fc0f30352e

View File

@ -1365,7 +1365,7 @@ async function reloadAll(do_search) {
}
await drawAll();
} catch (e) {
showError(e.toString());
showError(e.message);
}
enableButtons();
}
@ -1472,7 +1472,7 @@ async function start() {
drawAll();
}
} catch (e) {
showError(e.toString());
showError(e.message);
}
}