plugin error should be ex not e
Simon Smith committed
Nov 21, 2023 at 14:06 UTC
0a01c5d4e4ce871c660ab19bcb0afe8d9d3e5ee4
1 file changed
+1
-1
meshuser.js
+1
-1
@@ -4572,7 +4572,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4572
} else {
4573
try {
4574
parent.parent.pluginHandler.plugins[command.plugin].serveraction(command, obj, parent);
4575
- } catch (ex) { console.log('Error loading plugin handler (' + e + ')'); }
4575
+ } catch (ex) { console.log('Error loading plugin handler (' + ex + ')'); }
4576
}
4577
break;
4578
}