From dfc83dd700a78f4b9c5d1911e6cc2dd4087120dc Mon Sep 17 00:00:00 2001 From: sundowndev Date: Mon, 18 Feb 2019 23:12:39 +0100 Subject: [PATCH] Status command --- commands/status/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/status/index.js b/commands/status/index.js index 72c722d..a9f0778 100644 --- a/commands/status/index.js +++ b/commands/status/index.js @@ -6,6 +6,6 @@ export const action = async ({ req, logger }) => { logger.error('You are not logged'); } else { logger.info(`You are logged as ${global.user.firstName} ${global.user.lastName}`); - logger.info(`Session ID: ${global.user.phpsessid}`); + logger.info(`Cookie: ${global.user.phpsessid}`); } };