From b7963684b242c1b58dd0bcb9ac7fec2242024586 Mon Sep 17 00:00:00 2001 From: Matthew Fosse Date: Thu, 4 Jan 2024 13:05:39 -0500 Subject: [PATCH] default tor connection mode to disabled --- lib/store/settings_store.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/store/settings_store.dart b/lib/store/settings_store.dart index f9adaafb0..2f10c0202 100644 --- a/lib/store/settings_store.dart +++ b/lib/store/settings_store.dart @@ -813,7 +813,7 @@ abstract class SettingsStoreBase with Store { FiatApiMode.enabled.raw); final currentTorConnectionMode = TorConnectionMode.deserialize( raw: sharedPreferences.getInt(PreferencesKey.currentTorConnectionModeKey) ?? - FiatApiMode.enabled.raw); + TorConnectionMode.disabled.raw); final shouldStartTorOnLaunch = sharedPreferences.getBool(PreferencesKey.shouldStartTorOnLaunch) ?? false; final allowBiometricalAuthentication =