Template
1
0

Revert "Apparently its text/plain not text/text"

This reverts commit aa52f4045c.
This commit is contained in:
2025-07-05 01:38:53 +03:00
parent aa52f4045c
commit 4962bb5a2d

View File

@@ -18,6 +18,6 @@ void Webserver::initResponses() {
}; };
responseMethods["POST"]["/upload"] = [](HTTPrequest *self) { responseMethods["POST"]["/upload"] = [](HTTPrequest *self) {
self->sendResponse("200 OK", "text/plain", self->bodyContent); self->sendResponse("200 OK", "text/text", self->bodyContent);
}; };
} }