Format files.

This commit is contained in:
Benoit Marty 2023-07-18 23:05:12 +02:00
parent 403530a069
commit 456f4fba6b
2 changed files with 33 additions and 42 deletions

View file

@ -199,15 +199,13 @@ class RustMatrixRoom(
} }
} }
override suspend fun userDisplayName(userId: UserId): Result<String?> = override suspend fun userDisplayName(userId: UserId): Result<String?> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.memberDisplayName(userId.value) innerRoom.memberDisplayName(userId.value)
} }
} }
override suspend fun userAvatarUrl(userId: UserId): Result<String?> = override suspend fun userAvatarUrl(userId: UserId): Result<String?> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.memberAvatarUrl(userId.value) innerRoom.memberAvatarUrl(userId.value)
} }
@ -324,44 +322,38 @@ class RustMatrixRoom(
} }
} }
override suspend fun retrySendMessage(transactionId: TransactionId): Result<Unit> = override suspend fun retrySendMessage(transactionId: TransactionId): Result<Unit> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.retrySend(transactionId.value) innerRoom.retrySend(transactionId.value)
} }
} }
override suspend fun cancelSend(transactionId: TransactionId): Result<Unit> = override suspend fun cancelSend(transactionId: TransactionId): Result<Unit> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.cancelSend(transactionId.value) innerRoom.cancelSend(transactionId.value)
} }
} }
@OptIn(ExperimentalUnsignedTypes::class) @OptIn(ExperimentalUnsignedTypes::class)
override suspend fun updateAvatar(mimeType: String, data: ByteArray): Result<Unit> = override suspend fun updateAvatar(mimeType: String, data: ByteArray): Result<Unit> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.uploadAvatar(mimeType, data.toUByteArray().toList()) innerRoom.uploadAvatar(mimeType, data.toUByteArray().toList())
} }
} }
override suspend fun removeAvatar(): Result<Unit> = override suspend fun removeAvatar(): Result<Unit> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.removeAvatar() innerRoom.removeAvatar()
} }
} }
override suspend fun setName(name: String): Result<Unit> = override suspend fun setName(name: String): Result<Unit> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.setName(name) innerRoom.setName(name)
} }
} }
override suspend fun setTopic(topic: String): Result<Unit> = override suspend fun setTopic(topic: String): Result<Unit> = withContext(roomDispatcher) {
withContext(roomDispatcher) {
runCatching { runCatching {
innerRoom.setTopic(topic) innerRoom.setTopic(topic)
} }
@ -410,4 +402,3 @@ private suspend fun sendAttachment(handle: () -> SendAttachmentJoinHandle): Resu
} }
} }
} }