plugin error should be ex not e

This commit is contained in:
Simon Smith 2023-11-21 14:06:24 +00:00 committed by GitHub
parent 712277eb9e
commit 0a01c5d4e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4572,7 +4572,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
} else {
try {
parent.parent.pluginHandler.plugins[command.plugin].serveraction(command, obj, parent);
} catch (ex) { console.log('Error loading plugin handler (' + e + ')'); }
} catch (ex) { console.log('Error loading plugin handler (' + ex + ')'); }
}
break;
}