This commit is contained in:
Mirco Wittrien 2020-03-16 08:38:34 +01:00
parent f7a07029aa
commit 14347a0bac
2 changed files with 2 additions and 2 deletions

View File

@ -6131,7 +6131,7 @@
catch (err) {
returnvalue = null;
let value = values.shift();
formatvars[err.toString().split("for: ")[1]] = value != null ? value : "undefined";
formatvars[err.toString().split("for: ")[1]] = value != null ? (value === 0 ? "0" : value) : "undefined";
}
}
if (returnvalue) {

File diff suppressed because one or more lines are too long