Fixed: net/http.lua: HTTP request callback wasn't being called on some errors

This commit is contained in:
Waqas Hussain 2009-03-30 01:55:56 +05:00
parent cb2b5ec86f
commit 9357b3fc3e

View file

@ -115,6 +115,7 @@ function request(u, ex, callback)
local req = url.parse(u);
if not (req and req.host) then
callback(nil, 0, req);
return nil, "invalid-url";
end