diff options
author | Kim Alvefur <zash@zash.se> | 2019-12-15 22:08:20 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-12-15 22:08:20 +0100 |
commit | 567e4183b5e2ba4fe92ef0ef86b34327f036e9f1 (patch) | |
tree | aa4e46d028e4c2f3320627a76df81a85f6add4a2 /plugins | |
parent | 7b64b46af18c1ff2816547f6f6f0f046fdabf88f (diff) | |
download | prosody-567e4183b5e2ba4fe92ef0ef86b34327f036e9f1.tar.gz prosody-567e4183b5e2ba4fe92ef0ef86b34327f036e9f1.zip |
mod_admin_telnet: Sort hosts in module:list
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_telnet.lua | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index fffab4cf..fbaa80d0 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -466,16 +466,7 @@ function def_env.module:reload(name, hosts) end function def_env.module:list(hosts) - if hosts == nil then - hosts = array.collect(keys(prosody.hosts)); - table.insert(hosts, 1, "*"); - end - if type(hosts) == "string" then - hosts = { hosts }; - end - if type(hosts) ~= "table" then - return false, "Please supply a host or a list of hosts you would like to see"; - end + hosts = array.collect(set.new({ not hosts and "*" or nil }) + get_hosts_set(hosts)):sort(_sort_hosts); local print = self.session.print; for _, host in ipairs(hosts) do |