mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-24 03:26:38 +00:00
default tor connection mode to disabled
This commit is contained in:
parent
298b05b0af
commit
b7963684b2
1 changed files with 1 additions and 1 deletions
|
@ -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 =
|
||||||
|
|
Loading…
Reference in a new issue