diff options
| author | Bug Magnet <marco.nikic@mullvad.net> | 2025-04-29 11:26:13 +0200 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2025-04-29 11:26:13 +0200 |
| commit | 5f3e74d9d168ba92cc714aec2a490c32c5742df1 (patch) | |
| tree | 3a5560bdc3f2e8dd7ecfd5ddc8b6091b100828a8 | |
| parent | 7968c61e15c3748ce56d88d091120e5ffb97e4c4 (diff) | |
| parent | bffa1f2d6c4e8679debd3f5737fd7322f579088c (diff) | |
| download | mullvadvpn-5f3e74d9d168ba92cc714aec2a490c32c5742df1.tar.xz mullvadvpn-5f3e74d9d168ba92cc714aec2a490c32c5742df1.zip | |
Merge branch 'fix-quic-flag-release'
| -rw-r--r-- | ios/MullvadVPN/View controllers/SelectLocation/LocationViewControllerWrapper.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/MullvadVPN/View controllers/SelectLocation/LocationViewControllerWrapper.swift b/ios/MullvadVPN/View controllers/SelectLocation/LocationViewControllerWrapper.swift index fb77076abd..d36f3de288 100644 --- a/ios/MullvadVPN/View controllers/SelectLocation/LocationViewControllerWrapper.swift +++ b/ios/MullvadVPN/View controllers/SelectLocation/LocationViewControllerWrapper.swift @@ -320,12 +320,12 @@ extension LocationViewControllerWrapper: @preconcurrency LocationViewControllerD } private extension WireGuardObfuscationState { + /// This flag affects whether the "Setting: Obfuscation" pill is shown when selecting a location var affectsRelaySelection: Bool { switch self { case .shadowsocks: true - case .on, .off, .automatic, .udpOverTcp, .quic: - false + default: false } } } |
