aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http_files.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-03-03 15:30:00 +0100
committerKim Alvefur <zash@zash.se>2016-03-03 15:30:00 +0100
commite08144940d172498352d9966016bb2c6f0f04913 (patch)
treead44392c6312ae478a4815f44abb0828a7680c8b /plugins/mod_http_files.lua
parentcbe3f15ee4df20b4a5aa0edf44c86af52310fe8d (diff)
downloadprosody-e08144940d172498352d9966016bb2c6f0f04913.tar.gz
prosody-e08144940d172498352d9966016bb2c6f0f04913.zip
mod_http_files: Don't prepend / to path twice, sanitize path does this already
Diffstat (limited to 'plugins/mod_http_files.lua')
-rw-r--r--plugins/mod_http_files.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua
index 097f8346..fc39628c 100644
--- a/plugins/mod_http_files.lua
+++ b/plugins/mod_http_files.lua
@@ -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;