Gabriel Feo
03/25/2020, 4:31 PMDocumentJoiner
, where I'm trying to launch the coroutine that causes the errorCasey Brooks
03/25/2020, 4:43 PMawait()
-ing the async job. That probably means it’s running right to call.respond()
synchronously before the async
job can be started (async
is not suspending, it’s called on a CoroutineScope
receiver and returns immediately)Gabriel Feo
03/25/2020, 4:53 PMApplicationCall.respond
receives Any
. It'd take me ages to notice that was missing, thank you!