mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_files: Don't prepend / to path twice, sanitize path does this already
This commit is contained in:
parent
cbe3f15ee4
commit
e08144940d
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ function serve(opts)
|
|||
end
|
||||
path = sanitized_path;
|
||||
local orig_path = sanitize_path(request.path);
|
||||
local full_path = base_path .. (path and "/"..path or ""):gsub("/", path_sep);
|
||||
local full_path = base_path .. (path or ""):gsub("/", path_sep);
|
||||
local attr = stat(full_path:match("^.*[^\\/]")); -- Strip trailing path separator because Windows
|
||||
if not attr then
|
||||
return 404;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue