Skip to content

Commit f344601

Browse files
committed
fix
1 parent 509b584 commit f344601

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/network/forms/formHandler.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const server = http.createServer((request, response) => {
7272
});
7373

7474
form.parse(request, (err, fields, files) => {
75-
response.writeHead(200, { 'content-type': 'text/plain' });
75+
response.writeHead(200, { 'Content-Type': 'text/plain' });
7676
response.end(JSON.stringify({ fields, files }, null, 2));
7777
});
7878
return;

0 commit comments

Comments
 (0)