summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBug Magnet <marco.nikic@mullvad.net>2024-09-09 17:01:10 +0200
committerBug Magnet <marco.nikic@mullvad.net>2024-09-09 17:01:10 +0200
commitebfbdcc2170ab1a80370c39d89d072f7398d5362 (patch)
tree763ddb291cdac3daec3992d1fdcb630386774625
parent51d385e69ab0dfaf1300ee41e8cfb329cbed2272 (diff)
parent68b346b9f5235489d6c8d14f200047077731865c (diff)
downloadmullvadvpn-ebfbdcc2170ab1a80370c39d89d072f7398d5362.tar.xz
mullvadvpn-ebfbdcc2170ab1a80370c39d89d072f7398d5362.zip
Merge branch 'enable-daita-in-release-and-add-a-changelog-entry-ios-777'
-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)
}