diff --git a/ios/CHANGELOG.md b/ios/CHANGELOG.md index 032915651902..297240e7c915 100644 --- a/ios/CHANGELOG.md +++ b/ios/CHANGELOG.md @@ -22,8 +22,10 @@ Line wrap the file at 100 chars. Th * **Security**: in case of vulnerabilities. ## [Unreleased] - - +### Added +- Add multihop, a feature that routes traffic through two + of our relays before it reaches the internet. + ## [2024.4 - 2024-06-25] ### Added - Add Post-Quantum secure tunnels. diff --git a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift index da8e9cdacc51..1bac5f42c76e 100644 --- a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift +++ b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift @@ -412,9 +412,7 @@ final class VPNSettingsDataSource: UITableViewDiffableDataSource< snapshot.appendItems([.dnsSettings], toSection: .dnsSettings) snapshot.appendItems([.ipOverrides], toSection: .ipOverrides) - #if DEBUG snapshot.appendItems([.multihop], toSection: .multiHop) - #endif applySnapshot(snapshot, animated: animated, completion: completion) }