aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-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