Software /
code /
prosody
Changeset
6872:eb28067faadf
mod_http_files: Strip trailing directory separator regardless of directionality of the slash (fixes #545)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 26 Sep 2015 19:34:58 +0200 |
parents | 6869:5ce783c37024 |
children | 6873:6dae43341b44 |
files | plugins/mod_http_files.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_http_files.lua Fri Sep 18 16:14:43 2015 +0200 +++ b/plugins/mod_http_files.lua Sat Sep 26 19:34:58 2015 +0200 @@ -62,7 +62,7 @@ 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