Skip to content

Commit

Permalink
plugin error should be ex not e
Browse files Browse the repository at this point in the history
  • Loading branch information
si458 committed Nov 21, 2023
1 parent 712277e commit 0a01c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshuser.js
Expand Up @@ -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;
}
Expand Down

0 comments on commit 0a01c5d

Please sign in to comment.