Call the new recoverAndFixBackup method to fix key storage if it's broken

This commit is contained in:
Andy Balaam
2026-03-05 17:27:16 +00:00
committed by Andy Balaam
parent 89798654cb
commit 612b56f067

View File

@@ -214,7 +214,7 @@ class RustEncryptionService(
override suspend fun recover(recoveryKey: String): Result<Unit> = withContext(dispatchers.io) {
runCatchingExceptions {
service.recover(recoveryKey)
service.recoverAndFixBackup(recoveryKey)
}.recoverCatching {
when (it) {
// We ignore import errors because the user will be notified about them via the "Key storage out of sync" detection.