Skip to content

Commit

Permalink
Disable daemon auto-start setting on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
hulthe authored and Pururun committed Sep 26, 2024
1 parent 9db61ea commit fced0fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mullvad-daemon/src/settings/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ impl SettingsPersister {
if cfg!(target_os = "android") {
should_save |= !settings.tunnel_options.generic.enable_ipv6;
settings.tunnel_options.generic.enable_ipv6 = true;

// Auto-connect is managed by Android itself.
settings.auto_connect = false;
}
if crate::version::is_beta_version() {
should_save |= !settings.show_beta_releases;
Expand Down

0 comments on commit fced0fa

Please sign in to comment.