From 09b9cd0ab7da2064d40fd3643400851b94b08314 Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Sun, 28 May 2023 20:14:52 +0100 Subject: [PATCH] checkip final fix --- commands/admin/checkip.js | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/commands/admin/checkip.js b/commands/admin/checkip.js index 6b52048..6cad1f5 100644 --- a/commands/admin/checkip.js +++ b/commands/admin/checkip.js @@ -13,21 +13,7 @@ const {Command} = require('../../lib.js') async run(message, args){ //Check administration privilege if(message.author.id != '186540961650835456') return; - - const nets = require('os').networkInterfaces(); - const results = {} - for (const name of Object.keys(nets)) - { - for (const net of nets[name]) - { - if (net.family === (typeof net.family === 'string' ? 'IPv4' : 4) && name=='wlp3s0') - { - if (!results[name]) results[name] = []; - results[name].push(net.address); - } - } - } - message.author.send(results); + message.author.send(require('os').networkInterfaces()); } }module.exports = checkip;