diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-10 20:49:52 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-10 20:49:52 +0100 |
commit | d7f4d79f6a314c7857f61e0db73b60a7a8959b5b (patch) | |
tree | a379da88029b729431d7166f27a2f97ef5c0028b /plugins | |
parent | f9068904294bdc802aec43612d64c80241abe42c (diff) | |
parent | b69d5fbd671b5ce5e45e9adc0213ef94aebdecdf (diff) | |
download | prosody-d7f4d79f6a314c7857f61e0db73b60a7a8959b5b.tar.gz prosody-d7f4d79f6a314c7857f61e0db73b60a7a8959b5b.zip |
Merge 0.9->0.10
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_telnet.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 5c01f8b8..9d0e4c74 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -1114,7 +1114,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(""); |