aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2020-07-07 13:52:25 +0100
committerMatthew Wild <mwild1@gmail.com>2020-07-07 13:52:25 +0100
commitd2edbeb5ec784f1a2c57098fa0508718c802ab74 (patch)
tree90fc2cb0e0561d6e002f5584667bcaa6aa6c8a65
parent28aad07a07e730f5f90c032649b9581c67cde4bf (diff)
downloadprosody-d2edbeb5ec784f1a2c57098fa0508718c802ab74.tar.gz
prosody-d2edbeb5ec784f1a2c57098fa0508718c802ab74.zip
net.http: Fix traceback on invalid URL passed to request()
-rw-r--r--net/http.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/http.lua b/net/http.lua
index fe5250ac..0adac26c 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -183,14 +183,15 @@ end
local function request(self, u, ex, callback)
local req = url.parse(u);
- req.url = u;
- req.http = self;
if not (req and req.host) then
callback("invalid-url", 0, req);
return nil, "invalid-url";
end
+ req.url = u;
+ req.http = self;
+
if not req.path then
req.path = "/";
end