From 0a01c5d4e4ce871c660ab19bcb0afe8d9d3e5ee4 Mon Sep 17 00:00:00 2001 From: Simon Smith Date: Tue, 21 Nov 2023 14:06:24 +0000 Subject: [PATCH] plugin error should be ex not e --- meshuser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshuser.js b/meshuser.js index 7739c789..5e82293d 100644 --- a/meshuser.js +++ b/meshuser.js @@ -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; }