mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_admin_shell: Allow matching on host or bare JID in c2s:show
Only supporting exact match on full JID isn't helpful if you want to list sessions per host or user. Backport of 430333198e4c Fixes #1857
This commit is contained in:
parent
4414f8402f
commit
f3b1b57a70
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ local prosody = _G.prosody;
|
|||
local unpack = table.unpack or unpack; -- luacheck: ignore 113
|
||||
local iterators = require "util.iterators";
|
||||
local keys, values = iterators.keys, iterators.values;
|
||||
local jid_bare, jid_split, jid_join = import("util.jid", "bare", "prepped_split", "join");
|
||||
local jid_bare, jid_split, jid_join, jid_compare = import("util.jid", "bare", "prepped_split", "join", "compare");
|
||||
local set, array = require "util.set", require "util.array";
|
||||
local cert_verify_identity = require "util.x509".verify_identity;
|
||||
local envload = require "util.envload".envload;
|
||||
|
@ -940,7 +940,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_jid;
|
||||
return (not match_jid) or jid_compare(jid, match_jid);
|
||||
end
|
||||
|
||||
local group_by_host = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue