shouldn’t be gone when converting it to Flow and u...
# coroutines
m
shouldn’t be gone when converting it to Flow and use
launchIn()
?
o
where specifically is the error?
m
at contributors function
o
sounds like that function is marked
suspend
for some reason
code after the fact doesn't change whether that one is suspend or not
it probably shouldn't be suspend if it's returning a Channel/Flow/etc., but I don't know the details
if it's third-party, my suggestion is to do
flow { _githubService.contributors(...).asFlow() }.flatten()
to wrap it in the flow's suspend context