mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_admin_shell: Use exact match instead of Lua patterns in c2s,s2s:show
It is unexpected that 'example.com' matches 'exampleicom.org' and this use of Lua patterns is undocumented and unlikely to be widely known or used.
This commit is contained in:
parent
ca19260145
commit
b5a87898ee
1 changed files with 2 additions and 2 deletions
|
@ -903,7 +903,7 @@ function def_env.c2s:show(match_jid, colspec)
|
|||
|
||||
local function match(session)
|
||||
local jid = get_jid(session)
|
||||
return (not match_jid) or jid:match(match_jid)
|
||||
return (not match_jid) or jid == match_jid;
|
||||
end
|
||||
|
||||
local group_by_host = true;
|
||||
|
@ -986,7 +986,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 or ""):match(match_jid) or (remote or ""):match(match_jid);
|
||||
return not 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