summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJon Petersson <jon.petersson@mullvad.net>2025-03-25 13:34:04 +0100
committerJon Petersson <jon.petersson@mullvad.net>2025-03-27 08:36:10 +0100
commit34ddc1758c63193c435463ddecb7ee4846f9eb88 (patch)
treefcc4efa21f1b1ffe5b503da8fd6ff3318cf12e3e
parentc39b18b13075ae7ef5d860b4c984a16bb2d932a1 (diff)
downloadmullvadvpn-34ddc1758c63193c435463ddecb7ee4846f9eb88.tar.xz
mullvadvpn-34ddc1758c63193c435463ddecb7ee4846f9eb88.zip
Fix country sorting in location view
-rw-r--r--ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift b/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift
index b3d9d60a2d..53c5f0dfd6 100644
--- a/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift
+++ b/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift
@@ -129,7 +129,7 @@ extension LocationNode: Hashable {
extension LocationNode: Comparable {
static func < (lhs: LocationNode, rhs: LocationNode) -> Bool {
- lhs.name < rhs.name
+ lhs.name.lowercased() < rhs.name.lowercased()
}
}