We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df40db3 commit 368617aCopy full SHA for 368617a
moneyflow/screens/credential_screens.py
@@ -373,6 +373,10 @@ async def save_credentials(self) -> None:
373
backend_type=self.backend_type,
374
)
375
376
+ # Load credentials back to get the encryption key for cache encryption
377
+ _, encryption_key = cred_manager.load_credentials(encryption_password=encrypt_pass)
378
+ self.app.encryption_key = encryption_key
379
+
380
error_label.update("✅ Credentials saved! Loading app...")
381
382
# Dismiss this screen and pass credentials back (including backend type)
0 commit comments