mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_admin_shell: Match substring in muc:affiliations() like muc:occupants()
Maybe one day we'll get consistent filtering semantics everywhere.
This commit is contained in:
parent
1b71a53fb7
commit
dc958f1e40
1 changed files with 1 additions and 1 deletions
|
@ -1460,7 +1460,7 @@ function def_env.muc:affiliations(room_jid, filter)
|
||||||
local total = #affiliated;
|
local total = #affiliated;
|
||||||
if filter then
|
if filter then
|
||||||
affiliated:filter(function(affiliation)
|
affiliated:filter(function(affiliation)
|
||||||
return filter == affiliation[1] or filter == affiliation[2];
|
return filter == affiliation[1] or affiliation[2]:find(filter, 1, true);
|
||||||
end);
|
end);
|
||||||
end
|
end
|
||||||
local displayed = #affiliated;
|
local displayed = #affiliated;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue