fix (network): reversed order of WAPs
Don't use `sort_by_key` when wanting a descending order search...
This commit is contained in:
parent
5369b4eb29
commit
3835133af1
1 changed files with 1 additions and 1 deletions
|
|
@ -631,7 +631,7 @@ impl NetworkManagerState {
|
|||
})
|
||||
.cloned()
|
||||
.collect();
|
||||
wireless_access_points.sort_by_key(|ap| ap.strength);
|
||||
wireless_access_points.sort_by(|a, b| b.strength.cmp(&a.strength));
|
||||
self_.wireless_access_points = wireless_access_points;
|
||||
for ap in &self_.wireless_access_points {
|
||||
tracing::info!(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue