Remove useless suspend modifier

This commit is contained in:
Benoit Marty 2023-11-29 12:20:59 +01:00 committed by Benoit Marty
parent 6f1bf9b666
commit 1673fe7354

View file

@ -574,7 +574,7 @@ class RustMatrixRoom(
onNewSyncedEvent = { _syncUpdateFlow.value = systemClock.epochMillis() } onNewSyncedEvent = { _syncUpdateFlow.value = systemClock.epochMillis() }
) )
private suspend fun sendAttachment(files: List<File>, handle: () -> SendAttachmentJoinHandle): Result<MediaUploadHandler> { private fun sendAttachment(files: List<File>, handle: () -> SendAttachmentJoinHandle): Result<MediaUploadHandler> {
return runCatching { return runCatching {
MediaUploadHandlerImpl(files, handle()) MediaUploadHandlerImpl(files, handle())
} }