diff options
author | Kim Alvefur <zash@zash.se> | 2020-06-23 15:43:57 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-06-23 15:43:57 +0200 |
commit | 540be50a3c3165d08e7e98d406dd911122d51941 (patch) | |
tree | d8ec7986d7608e4eb90407cf888b84a3dcc5b762 /net/http/server.lua | |
parent | 48c9a60d193c6c329a5d2b8681bd4b914f03af71 (diff) | |
download | prosody-540be50a3c3165d08e7e98d406dd911122d51941.tar.gz prosody-540be50a3c3165d08e7e98d406dd911122d51941.zip |
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.
Diffstat (limited to 'net/http/server.lua')
-rw-r--r-- | net/http/server.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua index d0bd3294..18704962 100644 --- a/net/http/server.lua +++ b/net/http/server.lua @@ -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; |