mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Strip trailing directory separator regardless of directionality of the slash (fixes #545)
This commit is contained in:
parent
a10c1e367f
commit
a29f12e309
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ function serve(opts)
|
|||
local request, response = event.request, event.response;
|
||||
local orig_path = request.path;
|
||||
local full_path = base_path .. (path and "/"..path or "");
|
||||
local attr = stat((full_path:gsub('%'..path_sep..'+$','')));
|
||||
local attr = stat(full_path:match("^.*[^\\/]")); -- Strip trailing path separator because Windows
|
||||
if not attr then
|
||||
return 404;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue