diff options
author | Kim Alvefur <zash@zash.se> | 2012-12-09 12:20:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-12-09 12:20:55 +0100 |
commit | 3904cf00a1c09dad9b1938e031b6ebf4f39be5f7 (patch) | |
tree | 03956a8a9247babc607ab26b998b387ff6caf3cd /plugins/mod_http.lua | |
parent | 733cbda1e50bba8a4e6afa9e00ecd50445d9d7fa (diff) | |
download | prosody-3904cf00a1c09dad9b1938e031b6ebf4f39be5f7.tar.gz prosody-3904cf00a1c09dad9b1938e031b6ebf4f39be5f7.zip |
mod_http: Fix path length pattern
Diffstat (limited to 'plugins/mod_http.lua')
-rw-r--r-- | plugins/mod_http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index e73778ae..018f2ea3 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -88,7 +88,7 @@ function module.add_host(module) local data = handler; handler = function () return data; end elseif event_name:sub(-2, -1) == "/*" then - local base_path_len = #event_name:match("(/.+/)%*$")+1; + local base_path_len = #event_name:match("/.+$"); local _handler = handler; handler = function (event) local path = event.request.path:sub(base_path_len); |