update migration behavior slightly (#1364)

This commit is contained in:
Matthew Fosse 2024-04-05 09:11:47 -07:00 committed by GitHub
parent 7eed97718e
commit dbb62ef5c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -237,7 +237,7 @@ Future<void> disableServiceStatusFiatDisabled(SharedPreferences sharedPreference
return; return;
} }
if (currentFiat == FiatApiMode.disabled.raw) { if (currentFiat == FiatApiMode.disabled.raw || currentFiat == FiatApiMode.torOnly.raw) {
await sharedPreferences.setBool(PreferencesKey.disableBulletinKey, true); await sharedPreferences.setBool(PreferencesKey.disableBulletinKey, true);
} }
} }