Hi, I need some help.
I'm using ktor server to build a REST server.
I'm using jackson ContentNegotiation and everything is fine.
Except now I want that some of my routes answer sometime an image.
But event I'm setting the ContentType in my response (call.respondBytes(resultFile.readBytes(), ContentType("image", "png"))) I see that actual headers are still "application/json" ...
How can I tweak ktor to not override contentType when I'm explicitly setting it in my response ?