Fix formatting issues

This commit is contained in:
ganfra 2024-06-12 15:31:59 +02:00
parent cd18e5a981
commit 05786cedc3
5 changed files with 6 additions and 12 deletions

View file

@ -38,7 +38,6 @@ class SendQueues @Inject constructor(
private val matrixClient: MatrixClient,
private val networkMonitor: NetworkMonitor,
) {
fun launchIn(coroutineScope: CoroutineScope) {
networkMonitor.connectivity
.onEach { networkStatus ->
@ -55,6 +54,7 @@ class SendQueues @Inject constructor(
room.setSendQueueEnabled(enabled = true)
}
}
}.launchIn(coroutineScope)
}
.launchIn(coroutineScope)
}
}