aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-11-13 15:03:24 +0000
committerMatthew Wild <mwild1@gmail.com>2018-11-13 15:03:24 +0000
commit8ebaee9c3d614a5ec32270108f1c45258939a7e8 (patch)
tree5ee893654d1908ee8d705faae07b544a11284b9c /net
parent4c07742fbbbcd6aabb38c7779c5ec76a52182012 (diff)
downloadprosody-8ebaee9c3d614a5ec32270108f1c45258939a7e8.tar.gz
prosody-8ebaee9c3d614a5ec32270108f1c45258939a7e8.zip
net.http.server: Move event formation to avoid traceback on missing Host header
Diffstat (limited to 'net')
-rw-r--r--net/http/server.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index 7fbf6377..9b63d516 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -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