Skip to content

Commit

Permalink
SFT-1943: tested and fixed restoring backups with 6 word encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
mjg-foundation committed Jul 29, 2024
1 parent fbfd59e commit a1706a9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,11 @@ async def enter_backup_password(self):
initial_prefixes=self.backup_password_prefixes).show()

(backup_password_words, self.backup_password_prefixes, _) = result
if result is None:
if backup_password_words is None:
cancel = await QuestionPage(text='Cancel password entry? ' +
'All progress will be lost.').show()
if cancel:
self.backup_password_prefixes = []
self.back()
else:
self.backup_password_words = backup_password_words
Expand Down

0 comments on commit a1706a9

Please sign in to comment.