summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ios/CHANGELOG.md6
-rw-r--r--ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift2
2 files changed, 4 insertions, 4 deletions
diff --git a/ios/CHANGELOG.md b/ios/CHANGELOG.md
index 0329156519..297240e7c9 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 da8e9cdacc..1bac5f42c7 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)
}