diff options
| -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 } } } |
