Sort provider servers on iOS

This commit is contained in:
Davide 2024-11-15 00:00:57 +01:00
parent b52e3c779b
commit 2b3961aef0
No known key found for this signature in database
GPG Key ID: A48836171C759F5E
1 changed files with 3 additions and 0 deletions

View File

@ -178,6 +178,9 @@ private extension VPNProviderServerView.ServersSubview {
.filter { .filter {
$0.provider.countryCode == code $0.provider.countryCode == code
} }
.sorted {
$0.provider.serverId < $1.provider.serverId
}
.nilIfEmpty .nilIfEmpty
} }