Merge pull request #516 from PR0M3TH3AN/codex/invoke-start_background_sync-after-seed-generation

Ensure sync after seed creation
This commit is contained in:
thePR0M3TH3AN
2025-07-13 19:48:45 -04:00
committed by GitHub

View File

@@ -835,6 +835,7 @@ class PasswordManager:
# Now, save and encrypt the seed with the fingerprint_dir # Now, save and encrypt the seed with the fingerprint_dir
try: try:
self.save_and_encrypt_seed(new_seed, fingerprint_dir) self.save_and_encrypt_seed(new_seed, fingerprint_dir)
self.start_background_sync()
except BaseException: except BaseException:
# Clean up partial profile on failure or interruption # Clean up partial profile on failure or interruption
self.fingerprint_manager.remove_fingerprint(fingerprint) self.fingerprint_manager.remove_fingerprint(fingerprint)