This commit is contained in:
MeiMei
2020-01-20 01:52:35 +09:00
committed by syuilo
parent 79cbf0888c
commit 75cb7f8b36
2 changed files with 9 additions and 9 deletions

View File

@@ -27,9 +27,9 @@ function initializeQueue(name: string) {
function renderError(e: Error): any {
return {
stack: e.stack,
message: e.message,
name: e.name
stack: e?.stack,
message: e?.message,
name: e?.name
};
}