From e9e44101f84ba841f3da705cb7ff817a020a041a Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Wed, 7 Jul 2021 19:36:43 -0700 Subject: [PATCH] Merge fix. --- meshuser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshuser.js b/meshuser.js index d71a325d..bed88e86 100644 --- a/meshuser.js +++ b/meshuser.js @@ -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.'; }