We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e505a67 commit f3a57c7Copy full SHA for f3a57c7
src/redirectionio_protocol.c
@@ -264,6 +264,10 @@ apr_status_t redirectionio_protocol_send_filter_headers(redirectionio_context *c
264
265
while (first_header != NULL) {
266
if (first_header->name != NULL && first_header->value != NULL) {
267
+ if (strcasecmp(first_header->name, "Content-Type") == 0) {
268
+ ap_set_content_type(r, apr_pstrdup(r->pool, first_header->value));
269
+ }
270
+
271
name_str = apr_pstrdup(r->pool, first_header->name);
272
value_str = apr_pstrdup(r->pool, first_header->value);
273
0 commit comments