mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_shell: Rename variable to avoid confusion with global function
For luacheck, but it doesn't actually complain about this right now
This commit is contained in:
parent
b292127500
commit
95bba786f1
1 changed files with 7 additions and 7 deletions
|
@ -1265,18 +1265,18 @@ end
|
|||
function def_env.host:list()
|
||||
local print = self.session.print;
|
||||
local i = 0;
|
||||
local type;
|
||||
local host_type;
|
||||
for host, host_session in iterators.sorted_pairs(prosody.hosts, _sort_hosts) do
|
||||
i = i + 1;
|
||||
type = host_session.type;
|
||||
if type == "local" then
|
||||
host_type = host_session.type;
|
||||
if host_type == "local" then
|
||||
print(host);
|
||||
else
|
||||
type = module:context(host):get_option_string("component_module", type);
|
||||
if type ~= "component" then
|
||||
type = type .. " component";
|
||||
host_type = module:context(host):get_option_string("component_module", host_type);
|
||||
if host_type ~= "component" then
|
||||
host_type = host_type .. " component";
|
||||
end
|
||||
print(("%s (%s)"):format(host, type));
|
||||
print(("%s (%s)"):format(host, host_type));
|
||||
end
|
||||
end
|
||||
return true, i.." hosts";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue