fix: Make Client.findDM return a Result (#4816)
This commit is contained in:
parent
0aa1a258e4
commit
c02c1ae1bd
7 changed files with 44 additions and 22 deletions
|
|
@ -297,8 +297,10 @@ class RustMatrixClient(
|
|||
}
|
||||
}
|
||||
|
||||
override suspend fun findDM(userId: UserId): RoomId? = withContext(sessionDispatcher) {
|
||||
innerClient.getDmRoom(userId.value)?.use { RoomId(it.id()) }
|
||||
override suspend fun findDM(userId: UserId): Result<RoomId?> = withContext(sessionDispatcher) {
|
||||
runCatchingExceptions {
|
||||
innerClient.getDmRoom(userId.value)?.use { RoomId(it.id()) }
|
||||
}
|
||||
}
|
||||
|
||||
override suspend fun ignoreUser(userId: UserId): Result<Unit> = withContext(sessionDispatcher) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue