Hi, does anybody know what's the blocker of <https...
# squarelibraries
j
Hi, does anybody know what's the blocker of https://github.com/square/retrofit/pull/2886
Retrofit: Add first-party Kotlin coroutine suspend support
👍 1
b
One that I can think of, the
Call<T>.await()
extension needs to check whether or not it should be returning a null instance. It current does:
Copy code
36:    continuation.resume(response.body()!!)