Fix build error

This commit is contained in:
billz 2020-05-24 08:30:32 +01:00
parent 1a8ffd94fc
commit eb6f2c5db7
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ function sortNetworksByRSSI(&$networks)
arsort($valRSSI);
$networks = array();
foreach ($valRSSI as $SSID => $RSSI) {
networks[$SSID] = $nets[$SSID];
$networks[$SSID] = $nets[$SSID];
$networks[$SSID]['RSSI'] = $RSSI;
}
}