aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-03-23 18:45:02 +0100
committerKim Alvefur <zash@zash.se>2015-03-23 18:45:02 +0100
commite9801c774da19f9d0722685973352a524f00f1af (patch)
tree925b7ae3ae69d1939e0b9a979eaf9192401d04c9
parent72f36b47688449a69477bece51919426b95d17bf (diff)
downloadprosody-e9801c774da19f9d0722685973352a524f00f1af.tar.gz
prosody-e9801c774da19f9d0722685973352a524f00f1af.zip
mod_http: Return a static string from module:http_url() when no ports are enabled and log a warning
-rw-r--r--plugins/mod_http.lua2
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)