Fix numbering of nearby nextworks

This commit is contained in:
zbchristian 2021-09-02 10:58:34 +02:00
parent 9aa94a4d22
commit 98fe68e2d3
1 changed files with 9 additions and 3 deletions

View File

@ -70,6 +70,12 @@ function nearbyWifiStations(&$networks, $cached = true)
exec('cat '.RASPI_HOSTAPD_CONFIG.' | sed -rn "s/ssid=(.*)\s*$/\1/p" ', $ap_ssid);
$ap_ssid = $ap_ssid[0];
$index = 0;
if ( !empty($networks) ) {
$lastnet = end($networks);
if ( isset($lastnet['index']) ) $index = $lastnet['index'] + 1;
}
foreach (explode("\n", $scan_results) as $network) {
$arrNetwork = preg_split("/[\t]+/", $network); // split result into array
@ -86,8 +92,6 @@ function nearbyWifiStations(&$networks, $cached = true)
continue;
}
$networks[$ssid]['ssid'] = $ssid;
// If network is saved
if (array_key_exists($ssid, $networks)) {
$networks[$ssid]['visible'] = true;
@ -95,14 +99,16 @@ function nearbyWifiStations(&$networks, $cached = true)
// TODO What if the security has changed?
} else {
$networks[$ssid] = array(
'ssid' => $ssid,
'configured' => false,
'protocol' => ConvertToSecurity($arrNetwork[3]),
'channel' => ConvertToChannel($arrNetwork[1]),
'passphrase' => '',
'visible' => true,
'connected' => false,
'index' => -1
'index' => $index
);
++$index;
}
// Save RSSI, if the current value is larger than the already stored