This fixes a crash that happens when you:
1. Scroll to the end of the Edit screen
2. Delete a peer
3. Toggle the Activate On Demand switch
Signed-off-by: Roopesh Chander <roop@roopc.net>
self.activateOnDemandSetting.isActivateOnDemandEnabled = isOn
self.loadSections()
- let indexPaths = (1 ..< 4).map { IndexPath(row: $0, section: indexPath.section) }
+ let section = self.sections.firstIndex(where: { $0 == .onDemand })!
+ let indexPaths = (1 ..< 4).map { IndexPath(row: $0, section: section) }
if isOn {
if self.activateOnDemandSetting.activateOnDemandOption == .none {
self.activateOnDemandSetting.activateOnDemandOption = TunnelViewModel.defaultActivateOnDemandOption()