Merge 0.11->trunk

This commit is contained in:
Matthew Wild 2020-07-07 13:52:45 +01:00
commit 371bf09ef7

View file

@ -185,14 +185,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