mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http: Fix normalize_path('/') to not return an empty string, fixes module:http_url()
This commit is contained in:
parent
1d00578154
commit
1e99d3bcd0
1 changed files with 1 additions and 1 deletions
|
@ -17,8 +17,8 @@ local server = require "net.http.server";
|
|||
server.set_default_host(module:get_option_string("http_default_host"));
|
||||
|
||||
local function normalize_path(path)
|
||||
if path:sub(1,1) ~= "/" then path = "/"..path; end
|
||||
if path:sub(-1,-1) == "/" then path = path:sub(1, -2); end
|
||||
if path:sub(1,1) ~= "/" then path = "/"..path; end
|
||||
return path;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue