mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-07 06:57:12 -04:00
Fix [object Object]
in error outputs when leaving numerical ingredient blank
This commit is contained in:
parent
1bc88728f0
commit
627b559fe3
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class Chef {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
log.error(err);
|
log.error(err);
|
||||||
error = {
|
error = {
|
||||||
displayStr: err.displayStr,
|
displayStr: err.displayStr || err.toString(),
|
||||||
};
|
};
|
||||||
progress = err.progress;
|
progress = err.progress;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue