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);