anyone had an issue with Ktor on iOS? the followin...
# multiplatform
j
anyone had an issue with Ktor on iOS? the following code runs find on android, but hangs until timeout fires on ios:
Copy code
HttpClient().use { httpClient ->
    withTimeout(timeout) {
        httpClient.prepareGet(urlPath).execute { httpResponse ->
            ... do work ...
            // hangs here
        }
    }   
}