Skip to content

Commit

Permalink
WiFi: don't hide low signal strength networks
Browse files Browse the repository at this point in the history
  • Loading branch information
rationalsa committed Jan 7, 2022
1 parent dfd439c commit 8d437a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion belaUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ function getAvailableWifiNetworks() {
const [active, ssid, signal, bars, security, freq, bssid, device] =
wifiNetwork.replace(/\\:/g, "&&").split(":");

if (ssid == "" || ssid == null || signal < 40) continue;
if (ssid == "" || ssid == null) continue;

if (!sortedWifiNetworks[device]) sortedWifiNetworks[device] = [];

Expand Down

0 comments on commit 8d437a0

Please sign in to comment.