File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
mullvad-daemon/src/settings
mullvad-types/src/settings Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -295,12 +295,6 @@ impl SettingsPersister {
295295 if crate :: version:: is_beta_version ( ) {
296296 settings. show_beta_releases = true ;
297297 }
298- // We only want to set this flag to true if the settings file hasn't been
299- // created yet so that we don't affect existing users' relay settings.
300- #[ cfg( target_os = "android" ) ]
301- {
302- settings. update_default_location = true ;
303- }
304298
305299 settings
306300 }
Original file line number Diff line number Diff line change @@ -272,7 +272,9 @@ impl Default for Settings {
272272 } ,
273273 ..Default :: default ( )
274274 } ) ,
275- update_default_location : false ,
275+ // We only want to set this flag to true if the settings file hasn't been
276+ // created yet so that we don't affect existing users' relay settings.
277+ update_default_location : true ,
276278 obfuscation_settings : ObfuscationSettings {
277279 selected_obfuscation : SelectedObfuscation :: Auto ,
278280 ..Default :: default ( )
You can’t perform that action at this time.
0 commit comments