summaryrefslogtreecommitdiff
path: root/handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'handler.c')
-rw-r--r--handler.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/handler.c b/handler.c
index a578a32..8e8b9c8 100644
--- a/handler.c
+++ b/handler.c
@@ -61,7 +61,8 @@ handle_redirect(struct json_script_ctx *ctx, struct blob_attr *data)
}
uh_http_header(cl, code, status);
- ustream_printf(cl->us, "Content-Length: 0\r\n");
+ if (!uh_use_chunked(cl))
+ ustream_printf(cl->us, "Content-Length: 0\r\n");
ustream_printf(cl->us, "Location: %s\r\n\r\n",
blobmsg_get_string(tb[0]));
uh_request_done(cl);