It's really nice of Ktor to use different defaults...
# ktor
c
It's really nice of Ktor to use different defaults for serialization on the client-side and on the server-side. Just took me about a day to understand why KotlinX.Serialization wouldn't work. Ktor 1.6.0 server-side,
JsonSupport.kt:54
Copy code
useArrayPolymorphism = true
Ktor 1.6.0 client-side,
KotlinxSerializer.kt:64
Copy code
useArrayPolymorphism = false
Where should I report that? GitHub, YouTrack?
👍 1
j
I think you should create a youtrack issue for htis
this
This will mess up anyone migrating to 1.6.0
a