diff --git a/lib/wifi/index.js b/lib/wifi/index.js index c28a6d8..193f4d7 100644 --- a/lib/wifi/index.js +++ b/lib/wifi/index.js @@ -36,12 +36,14 @@ class Wifi { const lines = stdout.split('\n') let output = [] let line + let i = 0 for (let l of lines) { line = l.replace('ESSID:', '').trim() - if (line !== '""') { + if (line !== '""' && i < 5) { line = line.replace(quoteRe, '') output.push(line) } + i++ } output = output.filter(ap => { if (ap !== '') return ap