Skip to content

Commit a736012

Browse files
authored
fix(core): deprecated recovery_mode flag in Features (#551)
1 parent fccbac8 commit a736012

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/apps/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def get_features() -> Features:
130130
f.unfinished_backup = storage.device.unfinished_backup()
131131
f.no_backup = storage.device.no_backup()
132132
f.flags = storage.device.get_flags()
133-
f.recovery_mode = storage.recovery.is_in_progress()
133+
f.recovery_mode = False # storage.recovery.is_in_progress()
134134
f.backup_type = mnemonic.get_type()
135135
f.sd_protection = storage.sd_salt.is_enabled()
136136
f.wipe_code_protection = config.has_wipe_code()

0 commit comments

Comments
 (0)