mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_admin_shell: Allow "*" as substitute for 'nil' for easier CLI usage
Since prosodyctl shell with additional arguments assumes the first two are a section:command() and any following arguments are strings, passing a bare 'nil' is not possible. In order to avoid delving into this rabbit hole, instead produce a token that alone is not really a legal JID for use as wildcard.
This commit is contained in:
parent
21eabc7e58
commit
2fa6a01018
1 changed files with 2 additions and 2 deletions
|
@ -1017,7 +1017,7 @@ function def_env.c2s:show(match_jid, colspec)
|
|||
|
||||
local function match(session)
|
||||
local jid = get_jid(session)
|
||||
return (not match_jid) or jid_compare(jid, match_jid);
|
||||
return (not match_jid) or match_jid == "*" or jid_compare(jid, match_jid);
|
||||
end
|
||||
|
||||
local group_by_host = true;
|
||||
|
@ -1100,7 +1100,7 @@ function def_env.s2s:show(match_jid, colspec)
|
|||
|
||||
local function match(session)
|
||||
local host, remote = get_s2s_hosts(session);
|
||||
return not match_jid or host == match_jid or remote == match_jid;
|
||||
return not match_jid or match_jid == "*" or host == match_jid or remote == match_jid;
|
||||
end
|
||||
|
||||
local group_by_host = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue