Follow SDK method renaming: fix_recovery_issues() got renamed to recover()

This commit is contained in:
Benoit Marty 2023-12-05 17:40:47 +01:00
parent 8f5fed48ab
commit e8e2e95e02
5 changed files with 11 additions and 11 deletions

View file

@ -179,7 +179,7 @@ internal class RustEncryptionService(
}
}
override suspend fun fixRecoveryIssues(recoveryKey: String): Result<Unit> = withContext(dispatchers.io) {
override suspend fun recover(recoveryKey: String): Result<Unit> = withContext(dispatchers.io) {
runCatching {
service.recover(recoveryKey)
}