diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-21 21:19:44 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-21 21:19:44 +0200 |
commit | 7c060d6be5a2fbc46a5a2bb9c6839edb42996a3e (patch) | |
tree | 97b88225bb3b5be35906e520e4e39d23f77e2a4e | |
parent | c6540b14f9fbd99a42d00ac616bc48ff0b146690 (diff) | |
download | prosody-7c060d6be5a2fbc46a5a2bb9c6839edb42996a3e.tar.gz prosody-7c060d6be5a2fbc46a5a2bb9c6839edb42996a3e.zip |
mod_http: Hook the host-less event if hooked from a global module
-rw-r--r-- | plugins/mod_http.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index bd94de40..1f1b8a87 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -38,7 +38,11 @@ local function get_http_event(host, app_path, key) if app_path == "/" and path:sub(1,1) == "/" then app_path = ""; end - return method:upper().." "..host..app_path..path; + if host == "*" then + return method:upper().." "..app_path..path; + else + return method:upper().." "..host..app_path..path; + end end local function get_base_path(host_module, app_name, default_app_path) |