We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 509b584 commit f344601Copy full SHA for f344601
1 file changed
js/network/forms/formHandler.mjs
@@ -72,7 +72,7 @@ const server = http.createServer((request, response) => {
72
});
73
74
form.parse(request, (err, fields, files) => {
75
- response.writeHead(200, { 'content-type': 'text/plain' });
+ response.writeHead(200, { 'Content-Type': 'text/plain' });
76
response.end(JSON.stringify({ fields, files }, null, 2));
77
78
return;
0 commit comments