aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_admin_telnet.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-03-10 20:52:14 +0100
committerKim Alvefur <zash@zash.se>2018-03-10 20:52:14 +0100
commitc4d543f80622efd5bb58254c9e4d4e09f3a03b97 (patch)
treee8c202f79d28d3aa921bb5d417233477e387f32a /plugins/mod_admin_telnet.lua
parentbc7b88dba9a5ff1484a38789f3c2734cb122db3c (diff)
parentb70fd0eb44df2de8d47c14c79f3c366f9fa3ed92 (diff)
downloadprosody-c4d543f80622efd5bb58254c9e4d4e09f3a03b97.tar.gz
prosody-c4d543f80622efd5bb58254c9e4d4e09f3a03b97.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_admin_telnet.lua')
-rw-r--r--plugins/mod_admin_telnet.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua
index b3a5c7ca..51e55d15 100644
--- a/plugins/mod_admin_telnet.lua
+++ b/plugins/mod_admin_telnet.lua
@@ -1151,7 +1151,7 @@ function def_env.http:list()
local http_host = module:context(host):get_option_string("http_host");
print("HTTP endpoints on "..host..(http_host and (" (using "..http_host.."):") or ":"));
for _, provider in ipairs(http_apps) do
- local url = module:context(host):http_url(provider.name);
+ local url = module:context(host):http_url(provider.name, provider.default_path);
print("", url);
end
print("");