Intellij complains that i'm using an inappropropri...
# coroutines
j
Intellij complains that i'm using an inappropropriate blocking call, is it fine if it's inside a Dispatchers.io context, in other words, can i ignore this warning ?
m
It shouldn't raise a warning with the right dispatcher. It's a known bug: https://youtrack.jetbrains.com/issue/KT-39684 So yes, you can ignore it for now.
K 1
j
awesome, thanks!