diff options
author | Kim Alvefur <zash@zash.se> | 2015-03-23 18:45:02 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-03-23 18:45:02 +0100 |
commit | 5efd433b8a988f866962f01e674ad7ef5a187668 (patch) | |
tree | 925b7ae3ae69d1939e0b9a979eaf9192401d04c9 /plugins/mod_http.lua | |
parent | 3550cf7e8e56e8d331596916006cdb8e57221e1c (diff) | |
download | prosody-5efd433b8a988f866962f01e674ad7ef5a187668.tar.gz prosody-5efd433b8a988f866962f01e674ad7ef5a187668.zip |
mod_http: Return a static string from module:http_url() when no ports are enabled and log a warning
Diffstat (limited to 'plugins/mod_http.lua')
-rw-r--r-- | plugins/mod_http.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 9ff3af74..9b574bc8 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -69,6 +69,8 @@ function moduleapi.http_url(module, app_name, default_path) return url_build(url); end end + module:log("warn", "No http ports enabled, can't generate an external URL"); + return "http://disabled.invalid/"; end function module.add_host(module) |