Skip to content

Commit e0bdd96

Browse files
Jon Peterssonbuggmagnet
Jon Petersson
authored andcommitted
Fix bug where offline servers can be selected
1 parent f8b62eb commit e0bdd96

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

ios/MullvadVPN/View controllers/SelectLocation/AllLocationDataSource.swift

+10-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class AllLocationDataSource: LocationDataSourceProtocol {
6464
name: serverLocation.country,
6565
code: LocationNode.combineNodeCodes([countryCode]),
6666
locations: [location],
67-
isActive: relay.active
67+
isActive: true // Defaults to true, updated when children are populated.
6868
)
6969

7070
if !rootNode.children.contains(countryNode) {
@@ -77,7 +77,7 @@ class AllLocationDataSource: LocationDataSourceProtocol {
7777
name: serverLocation.city,
7878
code: LocationNode.combineNodeCodes([countryCode, cityCode]),
7979
locations: [location],
80-
isActive: relay.active
80+
isActive: true // Defaults to true, updated when children are populated.
8181
)
8282

8383
if let countryNode = rootNode.countryFor(code: countryCode),
@@ -101,6 +101,14 @@ class AllLocationDataSource: LocationDataSourceProtocol {
101101
hostNode.parent = cityNode
102102
cityNode.children.append(hostNode)
103103
cityNode.children.sort()
104+
105+
cityNode.isActive = cityNode.children.contains(where: { hostNode in
106+
hostNode.isActive
107+
})
108+
109+
countryNode.isActive = countryNode.children.contains(where: { cityNode in
110+
cityNode.isActive
111+
})
104112
}
105113
}
106114
}

ios/MullvadVPN/View controllers/SelectLocation/LocationDataSource.swift

+4
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,10 @@ extension LocationDataSource: UITableViewDelegate {
236236
}
237237
}
238238

239+
func tableView(_ tableView: UITableView, shouldHighlightRowAt indexPath: IndexPath) -> Bool {
240+
itemIdentifier(for: indexPath)?.node.isActive ?? false
241+
}
242+
239243
func tableView(_ tableView: UITableView, indentationLevelForRowAt indexPath: IndexPath) -> Int {
240244
itemIdentifier(for: indexPath)?.indentationLevel ?? 0
241245
}

0 commit comments

Comments
 (0)