Merge fix.

This commit is contained in:
Ylian Saint-Hilaire 2021-07-07 19:36:43 -07:00
parent 27ceb05e07
commit e9e44101f8

View File

@ -1512,7 +1512,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
cmdargs = parseArgs(cmdargs);
// Find the command in the lookup table and run it.
var cmdData = serverUserCommand[cmd], r = '';;
var cmdData = serverUserCommands[cmd], r = '';;
if (cmdData != null) {
try { r = cmdData[0](cmdargs); } catch (ex) { r = '' + ex; }
} else { r = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.'; }