empty echo bugfix

This commit is contained in:
Baipyrus 2023-01-16 07:21:58 +01:00
parent 1f980e09b7
commit 750f2a8f96

View File

@ -58,5 +58,7 @@ function cmd_exec(input) {
}
function cmd_echo(input) {
if (input === undefined)
return " ";
return input.join(' ');
}