Fix thrown errors not appearing in console

This commit is contained in:
thepaperpilot 2023-05-17 20:05:37 -05:00
parent 5c1152460f
commit 56279e3794

View file

@ -32,14 +32,16 @@ console.error = function (...args) {
error(...args); error(...args);
}; };
window.onerror = function (event, source, lineno, colno, error) { window.onerror = function (event, source, lineno, colno, err) {
state.errors.push(error instanceof Error ? error : new Error(JSON.stringify(error))); state.errors.push(err instanceof Error ? err : new Error(JSON.stringify(err)));
error(err);
return true; return true;
}; };
window.onunhandledrejection = function (event) { window.onunhandledrejection = function (event) {
state.errors.push( state.errors.push(
event.reason instanceof Error ? event.reason : new Error(JSON.stringify(event.reason)) event.reason instanceof Error ? event.reason : new Error(JSON.stringify(event.reason))
); );
error(event.reason);
}; };
document.title = projInfo.title; document.title = projInfo.title;