summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrew Bulhak <andrew.bulhak@mullvad.net>2024-11-13 00:07:20 +0100
committerBug Magnet <marco.nikic@mullvad.net>2024-11-28 09:54:26 +0100
commit9a6e658eaae5b356778794c6b56b8486605b54f7 (patch)
tree7b91efd0c69f1722eaeecc7a6f8786c8f569620f
parent6f4efb9eb02190c6b8d0e63776db53b013399337 (diff)
downloadmullvadvpn-9a6e658eaae5b356778794c6b56b8486605b54f7.tar.xz
mullvadvpn-9a6e658eaae5b356778794c6b56b8486605b54f7.zip
Add changes from PR
-rw-r--r--ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsCellFactory.swift2
-rw-r--r--ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift2
-rw-r--r--ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSourceDelegate.swift1
3 files changed, 2 insertions, 3 deletions
diff --git a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsCellFactory.swift b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsCellFactory.swift
index fe32ddd70f..1fe60481d8 100644
--- a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsCellFactory.swift
+++ b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsCellFactory.swift
@@ -72,7 +72,7 @@ final class VPNSettingsCellFactory: CellFactoryProtocol {
cell.titleLabel.text = NSLocalizedString(
"UDP_TCP_OBFUSCATION_CELL_LABEL",
tableName: "VPNSettings",
- value: "UDP/TCP Obfuscation",
+ value: "UDP-over-TCP",
comment: ""
)
diff --git a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift
index 852ef3f8d4..b5590112a7 100644
--- a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift
+++ b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSource.swift
@@ -321,7 +321,7 @@ final class VPNSettingsDataSource: UITableViewDiffableDataSource<
case .udpOverTcpObfuscationSettings:
tableView.deselectRow(at: indexPath, animated: false)
- delegate?.showUDPOverTCPObfuscationSettings()
+ delegate?.showDetails(for: .udpOverTcp)
case .wireGuardObfuscationAutomatic:
selectObfuscationState(.automatic)
diff --git a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSourceDelegate.swift b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSourceDelegate.swift
index 3256e37fbd..98695d1f7f 100644
--- a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSourceDelegate.swift
+++ b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsDataSourceDelegate.swift
@@ -20,7 +20,6 @@ protocol VPNSettingsDataSourceDelegate: AnyObject {
func showDetails(for: VPNSettingsDetailsButtonItem)
func showDNSSettings()
func showIPOverrides()
- func showUDPOverTCPObfuscationSettings()
func didSelectWireGuardPort(_ port: UInt16?)
func humanReadablePortRepresentation() -> String
}