From 407775950c64142cf12f6b22f0da8072f221bb93 Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Sun, 28 May 2023 18:24:25 +0100 Subject: [PATCH] checkip fix --- commands/admin/checkip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/admin/checkip.js b/commands/admin/checkip.js index c463bdf..ec560b8 100644 --- a/commands/admin/checkip.js +++ b/commands/admin/checkip.js @@ -28,7 +28,7 @@ const {Command} = require('../../lib.js') } } } - message.author.send('IP: '+results) + message.author.send('IP: '+JSON.stringify(results)); } }module.exports = checkip;