mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http: Fix traceback on invalid URL passed to request()
This commit is contained in:
parent
540be50a3c
commit
bfd9789cb1
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue