Some clean up

This commit is contained in:
ganfra 2023-04-25 11:17:05 +02:00
parent c32c4c31b0
commit c9370315ad
4 changed files with 8 additions and 4 deletions

View file

@ -184,13 +184,13 @@ class RustMatrixRoom(
}
override suspend fun acceptInvitation(): Result<Unit> = withContext(coroutineDispatchers.io) {
kotlin.runCatching {
runCatching {
innerRoom.acceptInvitation()
}
}
override suspend fun rejectInvitation(): Result<Unit> = withContext(coroutineDispatchers.io) {
kotlin.runCatching {
runCatching {
innerRoom.rejectInvitation()
}
}