summaryrefslogtreecommitdiff
path: root/upload.c
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2024-12-26 16:24:31 +0100
committerVincent Douillet <vincent@vdouillet.fr>2024-12-26 16:25:18 +0100
commit016992ad866767edd93e2673c1c31dccd6cc2fc7 (patch)
tree8d3fccf3d5ad3958e55b2ad80ee7539c8f49408c /upload.c
parent2e04b2c23c66a42372d0ecaea2b0f4b2c7b7c7e5 (diff)
fix mime type for html responses
Diffstat (limited to 'upload.c')
-rw-r--r--upload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/upload.c b/upload.c
index ed9ec4d..56cf2c4 100644
--- a/upload.c
+++ b/upload.c
@@ -148,7 +148,7 @@ upload_get(struct kreq * r, struct http_ret * ret, struct file * file)
goto end;
}
/* print upload form */
- http_open(r, KHTTP_200, r->mime);
+ http_open(r, KHTTP_200, KMIME_TEXT_HTML);
K_OK(khttp_puts(r, tmpl->header), r);
K_OK(khtml_open(&html, r, 0), r);