Remove superfluous arguments

This commit is contained in:
Noah Zalev 2021-07-07 21:39:53 -04:00
parent 809f6ab74d
commit 3581880117
1 changed files with 1 additions and 1 deletions

View File

@ -1513,7 +1513,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
var cmdData = { result: '', command: command, cmdargs: cmdargs };
try {
consoleCommands[cmd](cmdData, command, cmdargs);
consoleCommands[cmd](cmdData);
} catch (e) {
if (consoleCommands[cmd] == null)
cmdData.result = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.';