mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
23fa3312e7
1 changed files with 2 additions and 2 deletions
|
@ -61,8 +61,8 @@ function serve(opts)
|
|||
local function serve_file(event, path)
|
||||
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 full_path = base_path .. (path and "/"..path or ""):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