when you called List<Any> on Moshi into Clas...
# kotlin-fuel
i
when you called List<Any> on Moshi into Class<T>, it only get List inferace
d
I've explained this before: you must use a type token. This has nothing to do with moshi 🙂
i
I already fixed the test for that.
suspend inline fun <reified T : Any> Request.awaitResponseResultObjects() = awaitResponseResult(moshiDeserializerOf<List<T>>( Types.newParameterizedType(List::class.java, T::class.java))