diff --git a/belaUI.js b/belaUI.js index 1da371d..eff8177 100644 --- a/belaUI.js +++ b/belaUI.js @@ -305,13 +305,13 @@ function updateNetif() { if (inetAddr) inetAddr = inetAddr[1]; // update the list of WiFi devices - if (name && name.match('^wlan')) { + if (name && name.match('^(wlan|ra)')) { let hwAddr = int.match(/ether ([0-9a-f:]+)/); if (hwAddr) { wiFiDeviceListAdd(name, hwAddr[1], inetAddr); } } - + if (name == 'lo' || name.match('^docker') || name.match('^l4tbr')) continue; if (!inetAddr) continue;