diff options
author | Kim Alvefur <zash@zash.se> | 2016-03-03 15:31:46 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-03-03 15:31:46 +0100 |
commit | 31c0a34728dfc3f72cb7fe2072929c339f3625cf (patch) | |
tree | 68439943f8a3ed1ddaf012795fa69e56b965fb8c /plugins/mod_http_files.lua | |
parent | 6ee217ad112f35b5f2f72a49965ea81bd5a8008b (diff) | |
download | prosody-31c0a34728dfc3f72cb7fe2072929c339f3625cf.tar.gz prosody-31c0a34728dfc3f72cb7fe2072929c339f3625cf.zip |
mod_http_files: Preserve a trailing / in paths (fixes #639)
Diffstat (limited to 'plugins/mod_http_files.lua')
-rw-r--r-- | plugins/mod_http_files.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua index fc39628c..53b6469b 100644 --- a/plugins/mod_http_files.lua +++ b/plugins/mod_http_files.lua @@ -75,6 +75,9 @@ function sanitize_path(path) out[c] = component; end end + if path:sub(-1,-1) == "/" then + out[c+1] = ""; + end return "/"..table.concat(out, "/"); end |