From 26de76579c1789ad04138f7f6bf8acc32d641fe2 Mon Sep 17 00:00:00 2001 From: Ryan Blenis Date: Thu, 26 Dec 2019 10:55:03 -0500 Subject: [PATCH] Consistency in call names hook_userLoggedInEnd --- meshuser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshuser.js b/meshuser.js index 8d0769a7..9282bb6b 100644 --- a/meshuser.js +++ b/meshuser.js @@ -402,7 +402,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // We are all set, start receiving data ws._socket.resume(); - if (parent.parent.pluginHandler != null) parent.parent.pluginHandler.callHook('userLoggedIn_end', user); + if (parent.parent.pluginHandler != null) parent.parent.pluginHandler.callHook('hook_userLoggedIn', user); }); } catch (e) { console.log(e); }