mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http.server: Move event formation to avoid traceback on missing Host header
This commit is contained in:
parent
4c07742fbb
commit
8ebaee9c3d
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,6 @@ function handle_request(conn, request, finish_cb)
|
|||
err_code, err = 400, "Missing or invalid 'Host' header";
|
||||
end
|
||||
end
|
||||
local host_event = request.method.." "..host..request.path:match("[^?]*");
|
||||
|
||||
if err then
|
||||
response.status_code = err_code;
|
||||
|
@ -244,6 +243,7 @@ function handle_request(conn, request, finish_cb)
|
|||
return;
|
||||
end
|
||||
|
||||
local host_event = request.method.." "..host..request.path:match("[^?]*");
|
||||
log("debug", "Firing event: %s", host_event);
|
||||
result = events.fire_event(host_event, payload);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue