snapframework / snap-core

Core type definitions (Snap monad, HTTP types, etc) and utilities for web handlers.
http://snapframework.com/
BSD 3-Clause "New" or "Revised" License
317 stars 85 forks source link

Snap.Util.GZip: fix Vary header handling #337

Open kfigiela opened 2 weeks ago

kfigiela commented 2 weeks ago

withCompression would overwrite Vary header with Accept-Encoding and discard the value set by the handler. This PR adjusts the behavior: if the Vary header was set to * (i.e. no caching allowed), * it will remain it's value, otherwise, we will add Accept-Encoding to the list.