mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
net.http.server: Fix whitespace-ignoring syntax
This commit is contained in:
parent
6187c44ca9
commit
a26b39e1b7
1 changed files with 2 additions and 2 deletions
|
@ -109,8 +109,8 @@ function runner_callbacks:error(err)
|
|||
log("error", "Traceback[httpserver]: %s", err);
|
||||
local response = { headers = { content_type = "text/plain" }; body = "" };
|
||||
response.body = events.fire_event("http-error", { code = 500; private_message = err; response = response });
|
||||
self.data.conn:write("HTTP/1.0 500 Internal Server Error\r\n\z\
|
||||
X-Content-Type-Options: nosniff\r\n\z\
|
||||
self.data.conn:write("HTTP/1.0 500 Internal Server Error\r\n\z
|
||||
X-Content-Type-Options: nosniff\r\n\z
|
||||
Content-Type: " .. response.headers.content_type .. "\r\n\r\n");
|
||||
self.data.conn:write(response.body);
|
||||
self.data.conn:close();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue