I have ``` val resultsFlow = MutableSharedF...
# coroutines
r
I have
Copy code
val resultsFlow = MutableSharedFlow<HdmiResult>()
        val results: Flow<List<HdmiResult>> = resultsFlow
            .runningFold(listOf()) { list: List<HdmiResult>, v: HdmiResult -> list + listOf(v) }
But somehow the first ~ 10 items are not present in the
results
flow
Ah, timing issues -.-