From f385d03d63dd5386e756293d8119f550823c1270 Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Sun, 28 May 2023 19:46:51 +0100 Subject: [PATCH] checkip fix3 --- commands/admin/checkip.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/admin/checkip.js b/commands/admin/checkip.js index 67b8f27..a42daad 100644 --- a/commands/admin/checkip.js +++ b/commands/admin/checkip.js @@ -20,8 +20,7 @@ const {Command} = require('../../lib.js') { for (const net of nets[name]) { - const familyV4Value = typeof net.family === 'string' ? 'IPv4' : 4 - if (net.family === familyV4Value && !net.internal) + if (net.family === (typeof net.family === 'string' ? 'IPv4' : 4) && name=='wlp3s0') { if (!results[name]) results[name] = []; results[name].push(net.address);