summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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()
}
}