mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_admin_telnet: Fix host selection filter, fixes loading on components
get_hosts_with_module(a component, mod) would still filter out components since they don't have type="component" instead of "local" Introduced in 4d3549e64489
This commit is contained in:
parent
23cd82ba5f
commit
3947003b7e
1 changed files with 17 additions and 3 deletions
|
@ -385,10 +385,24 @@ end
|
|||
local function get_hosts_with_module(hosts, module)
|
||||
local hosts_set = get_hosts_set(hosts)
|
||||
/ function (host)
|
||||
if prosody.hosts[host].type == "local" or module and modulemanager.is_loaded(host, module) then
|
||||
return host;
|
||||
if module then
|
||||
-- Module given, filter in hosts with this module loaded
|
||||
if modulemanager.is_loaded(host, module) then
|
||||
return host;
|
||||
else
|
||||
return nil;
|
||||
end
|
||||
end
|
||||
if not hosts then
|
||||
-- No hosts given, filter in VirtualHosts
|
||||
if prosody.hosts[host].type == "local" then
|
||||
return host;
|
||||
else
|
||||
return nil
|
||||
end
|
||||
end;
|
||||
return nil;
|
||||
-- No module given, but hosts are, don't filter at all
|
||||
return host;
|
||||
end;
|
||||
if module and modulemanager.get_module("*", module) then
|
||||
hosts_set:add("*");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue