mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http.server: Fix reporting of missing Host header
The "Missing or invalid 'Host' header" case was dead code previously because `host` was always at least an empty string.
This commit is contained in:
parent
48c9a60d19
commit
540be50a3c
1 changed files with 2 additions and 1 deletions
|
@ -207,7 +207,8 @@ function handle_request(conn, request, finish_cb)
|
|||
};
|
||||
conn._http_open_response = response;
|
||||
|
||||
local host = (request.headers.host or ""):gsub(":%d+$","");
|
||||
local host = request.headers.host;
|
||||
if host then host = host:gsub(":%d+$",""); end
|
||||
|
||||
-- Some sanity checking
|
||||
local err_code, err;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue