Diff

net/http.lua @ 10994:e2ce067bb59a 0.11

net.http: Fix traceback on invalid URL passed to request()
author Matthew Wild <mwild1@gmail.com>
date Tue, 07 Jul 2020 13:52:25 +0100
parent 9611:2700317f93e4
child 10995:e18a913aed2d
child 11015:355eae2f9ba8
line wrap: on
line diff
--- a/net/http.lua	Tue Jun 23 15:43:57 2020 +0200
+++ b/net/http.lua	Tue Jul 07 13:52:25 2020 +0100
@@ -183,14 +183,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