default tor connection mode to disabled

This commit is contained in:
Matthew Fosse 2024-01-04 13:05:39 -05:00
parent 298b05b0af
commit b7963684b2

View file

@ -813,7 +813,7 @@ abstract class SettingsStoreBase with Store {
FiatApiMode.enabled.raw); FiatApiMode.enabled.raw);
final currentTorConnectionMode = TorConnectionMode.deserialize( final currentTorConnectionMode = TorConnectionMode.deserialize(
raw: sharedPreferences.getInt(PreferencesKey.currentTorConnectionModeKey) ?? raw: sharedPreferences.getInt(PreferencesKey.currentTorConnectionModeKey) ??
FiatApiMode.enabled.raw); TorConnectionMode.disabled.raw);
final shouldStartTorOnLaunch = final shouldStartTorOnLaunch =
sharedPreferences.getBool(PreferencesKey.shouldStartTorOnLaunch) ?? false; sharedPreferences.getBool(PreferencesKey.shouldStartTorOnLaunch) ?? false;
final allowBiometricalAuthentication = final allowBiometricalAuthentication =