Preserve path when parsing urls.
This commit is contained in:
parent
1b4debffee
commit
47e644031f
2 changed files with 4 additions and 3 deletions
|
@ -183,8 +183,9 @@ end
|
|||
-- a stringing with the corresponding URL
|
||||
-----------------------------------------------------------------------------
|
||||
function _M.build(parsed)
|
||||
local ppath = _M.parse_path(parsed.path or "")
|
||||
local url = _M.build_path(ppath)
|
||||
--local ppath = _M.parse_path(parsed.path or "")
|
||||
--local url = _M.build_path(ppath)
|
||||
local url = parsed.path or ""
|
||||
if parsed.params then url = url .. ";" .. parsed.params end
|
||||
if parsed.query then url = url .. "?" .. parsed.query end
|
||||
local authority = parsed.authority
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue