Hey guys! I'm getting an error when trying to call...
# javascript
f
Hey guys! I'm getting an error when trying to call a function created with Koltin and coroutines from javascript. It's a very simple call:
Copy code
applicationApi.fetchCharacters(function (result) {
    console.log(result)
})
And the error:
Copy code
IllegalStateException: No more continuations to resume
Any suggestion on what it's going on?
b
Could you please provide more info about your usecase?
Kotlin coroutines are not designed to call outside of Kotlin