<@U3JDL750W> Yeah, I couldn't remember whether tha...
# http4k
x
@s4nchez Yeah, I couldn't remember whether that combining of same-named headers was in my code or http4k. It's in my code -- http4k
Response
represents the headers as a
List<Pair<String,String?>>
. My code converts this into (effectively) a
Map<String, List<String?>>
, and so I was getting odd behavior if I set the same header but with different cases in a single
Response
. Normalizing the header names myself isn't a big deal.
👍 1