summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ios/CHANGELOG.md2
-rw-r--r--ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift4
2 files changed, 2 insertions, 4 deletions
diff --git a/ios/CHANGELOG.md b/ios/CHANGELOG.md
index c758af3fa8..d6a0e9381c 100644
--- a/ios/CHANGELOG.md
+++ b/ios/CHANGELOG.md
@@ -22,6 +22,8 @@ Line wrap the file at 100 chars. Th
* **Security**: in case of vulnerabilities.
## [Unreleased]
+### Added
+- Add DAITA (Defence against AI-guided Traffic Analysis) setting
## [2024.5 - 2024-08-19]
### Added
diff --git a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift
index cfaa822003..2360302125 100644
--- a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift
+++ b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift
@@ -424,11 +424,7 @@ final class VPNSettingsDataSource: UITableViewDiffableDataSource<
snapshot.appendItems([.dnsSettings], toSection: .dnsSettings)
snapshot.appendItems([.ipOverrides], toSection: .ipOverrides)
- #if DEBUG
snapshot.appendItems([.daitaSwitch, .multihopSwitch], toSection: .privacyAndSecurity)
- #else
- snapshot.appendItems([.multihopSwitch], toSection: .privacyAndSecurity)
- #endif
applySnapshot(snapshot, animated: animated, completion: completion)
}