<@U0B8UEMV1> So, instead of `async { ... }.runBlo...
# arrow
e
@pakoito So, instead of
async { ... }.runBlocking()
you have to use
runBlocking { ... }
. You have to start in the proper context from the beginning. You can not change its context if it was already started in the empty one.