Software /
code /
prosody
Changeset
10995:e18a913aed2d
Merge 0.11->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 07 Jul 2020 13:52:45 +0100 |
parents | 10993:b5e7f4d533e2 (current diff) 10994:e2ce067bb59a (diff) |
children | 10996:d742095046f9 |
files | net/http.lua |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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