Changes between Version 1 and Version 2 of Ticket #36293, comment 7
- Timestamp:
- Apr 7, 2025, 5:49:15 AM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36293, comment 7
v1 v2 14 14 I think we could consider adding a check here: 15 15 16 17 {{{ 16 18 # Avoid gzipping if we've already got a content-encoding. 17 19 if response.has_header("Content-Encoding"): … … 19 21 return response 20 22 23 }}} 24 21 25 With a line in the docs to make this explicit. 22 26