Remove useless suspend modifier
This commit is contained in:
parent
6f1bf9b666
commit
1673fe7354
1 changed files with 1 additions and 1 deletions
|
|
@ -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())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue