Hey all, I'm having trouble deserializing json str...
# ktor
d
Hey all, I'm having trouble deserializing json strings from requests
a
To deserialize a JSON string you need to remove the String type from the list of the ignored types:
Copy code
install(ContentNegotiation) {
   // ...
   removeIgnoredType<String>()
}
Starting from version 3.0.0, the behavior will be what you expect.
d
Oh nice, thanks Aleksei!