Remove superfluous arguments

Noah Zalev committed Jul 7, 2021 at 21:39 UTC 35818801172403fb6bd195e206024a383b60f2fc
1 file changed +1 -1
meshuser.js
+1 -1
@@ -1513,7 +1513,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1513 var cmdData = { result: '', command: command, cmdargs: cmdargs };
1514
1515 try {
1516 - consoleCommands[cmd](cmdData, command, cmdargs);
1516 + consoleCommands[cmd](cmdData);
1517 } catch (e) {
1518 if (consoleCommands[cmd] == null)
1519 cmdData.result = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.';