Merge 0.11->trunk
authorMatthew Wild <mwild1@gmail.com>
Tue, 07 Jul 2020 13:52:45 +0100
changeset 10999 e18a913aed2d
parent 10997 b5e7f4d533e2 (current diff)
parent 10998 e2ce067bb59a (diff)
child 11000 d742095046f9
Merge 0.11->trunk
net/http.lua
--- a/net/http.lua	Thu Jul 02 19:03:59 2020 +0200
+++ b/net/http.lua	Tue Jul 07 13:52:45 2020 +0100
@@ -185,14 +185,15 @@
 
 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