diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-21 22:14:40 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-21 22:14:40 +0200 |
commit | a31b6728d47b09b101f751db192cc9e781f34b66 (patch) | |
tree | 4a0a03ae857fc3a35b08e359714cb405ec8af405 /plugins | |
parent | 83cd0e7ba79e37d9f078e8272adedba69dc3bb7f (diff) | |
download | prosody-a31b6728d47b09b101f751db192cc9e781f34b66.tar.gz prosody-a31b6728d47b09b101f751db192cc9e781f34b66.zip |
Revert 2dc7490899ae::5d6b252bc36f: Unfinished and broken
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http.lua | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 1f1b8a87..28d5d2d4 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -38,11 +38,7 @@ local function get_http_event(host, app_path, key) if app_path == "/" and path:sub(1,1) == "/" then app_path = ""; end - if host == "*" then - return method:upper().." "..app_path..path; - else - return method:upper().." "..host..app_path..path; - end + return method:upper().." "..host..app_path..path; end local function get_base_path(host_module, app_name, default_app_path) @@ -176,13 +172,7 @@ module:wrap_object_event(server._events, false, function (handlers, event_name, -- Not included in eg http-error events request.ip = get_ip_from_request(request); end - local ret = handlers(event_name, event_data); - if ret ~= nil then - return ret; - end - local host = (request.headers.host or ""):match("[^:]+"); - local host_event = request.method.." "..host..request.path:match("[^?]*"); - return handlers(host_event, event_data); + return handlers(event_name, event_data); end); module:provides("net", { |