Remove useless suspend modifier

This commit is contained in:
Benoit Marty 2023-11-29 12:20:59 +01:00 committed by Benoit Marty
parent 813983c452
commit a7d78cae78

View file

@ -574,7 +574,7 @@ class RustMatrixRoom(
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 {
MediaUploadHandlerImpl(files, handle())
}