mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
password dialog retry
This commit is contained in:
parent
2a0c8dcda1
commit
71c9f1d555
1 changed files with 3 additions and 1 deletions
|
@ -91,7 +91,9 @@ def run_password_dialog(self, wallet, parent):
|
|||
|
||||
if new_password != new_password2:
|
||||
QMessageBox.warning(parent, _('Error'), _('Passwords do not match'), _('OK'))
|
||||
self.run() # Retry
|
||||
# Retry
|
||||
run_password_dialog(self, wallet, parent)
|
||||
return
|
||||
|
||||
try:
|
||||
wallet.update_password(seed, password, new_password)
|
||||
|
|
Loading…
Add table
Reference in a new issue