From b5fd766f98ef405ee1bbc2244d6acf1ea9f6011e Mon Sep 17 00:00:00 2001 From: Sebastian Holmin Date: Mon, 7 Oct 2024 10:53:30 +0200 Subject: [PATCH] Don't toggle "direct only" with DAITA --- mullvad-daemon/src/lib.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/mullvad-daemon/src/lib.rs b/mullvad-daemon/src/lib.rs index 312e11d84f35..dd6c828802da 100644 --- a/mullvad-daemon/src/lib.rs +++ b/mullvad-daemon/src/lib.rs @@ -2345,15 +2345,6 @@ impl Daemon { .settings .update(|settings| { settings.tunnel_options.wireguard.daita.enabled = value; - - // enable 'use_multihop_if_necessary' automatically with daita - if cfg!(not(target_os = "android")) { - settings - .tunnel_options - .wireguard - .daita - .use_multihop_if_necessary = value - } }) .await;