diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-10 20:47:34 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-10 20:47:34 +0100 |
commit | b69d5fbd671b5ce5e45e9adc0213ef94aebdecdf (patch) | |
tree | c793857e603c715877e675d21bddfaa57a6e0010 | |
parent | e76866a61bc108a277b6b38969e2599e9a4b2649 (diff) | |
download | prosody-b69d5fbd671b5ce5e45e9adc0213ef94aebdecdf.tar.gz prosody-b69d5fbd671b5ce5e45e9adc0213ef94aebdecdf.zip |
mod_admin_telnet: Include the default path property in URL calculation (fixes #1099)
-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 86403606..163f67fa 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -1092,7 +1092,7 @@ function def_env.http:list() local http_host = module:context(host):get_option("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(""); |