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:
Kim Alvefur 2020-06-23 15:43:57 +02:00
parent 48c9a60d19
commit 540be50a3c

View file

@ -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;