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 | 54b9ab1ce4d82755e682dc5f842084812213be64 (patch) | |
tree | 925b7ae3ae69d1939e0b9a979eaf9192401d04c9 /plugins/mod_http.lua | |
parent | e1988edd2e558c25c5eb38439fbbc549fd151302 (diff) | |
download | prosody-54b9ab1ce4d82755e682dc5f842084812213be64.tar.gz prosody-54b9ab1ce4d82755e682dc5f842084812213be64.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) |