Fix API break.
This commit is contained in:
parent
f54b2a940c
commit
d660fd0666
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ internal class RustEncryptionService(
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun pinUserIdentity(userId: UserId): Result<Unit> = runCatching {
|
override suspend fun pinUserIdentity(userId: UserId): Result<Unit> = runCatching {
|
||||||
val userIdentity = service.getUserIdentity(userId.value) ?: error("User identity not found")
|
val userIdentity = service.userIdentity(userId.value) ?: error("User identity not found")
|
||||||
userIdentity.pin()
|
userIdentity.pin()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue