mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-23 11:15:44 +00:00
Do not display recovery card if entropy is not set.
This commit is contained in:
committed by
Greyson Parrelli
parent
ec3ec969eb
commit
91f6cff4df
@@ -78,7 +78,7 @@ public class InfoCard implements MappingModel<InfoCard> {
|
||||
List<InfoCard> infoCards = new ArrayList<>(Type.values().length);
|
||||
PaymentsValues paymentsValues = SignalStore.paymentsValues();
|
||||
|
||||
if (!paymentsValues.isMnemonicConfirmed()) {
|
||||
if (!paymentsValues.isMnemonicConfirmed() && paymentsValues.hasPaymentsEntropy()) {
|
||||
infoCards.add(new InfoCard(R.string.payment_info_card_save_recovery_phrase,
|
||||
R.string.payment_info_card_your_recovery_phrase_gives_you,
|
||||
R.string.payment_info_card_save_your_phrase,
|
||||
|
||||
Reference in New Issue
Block a user