mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Allow members (or above) in members-only non-anonymous rooms to see the member list (fixes #445)
This commit is contained in:
parent
99a7a645f1
commit
b44930be7e
1 changed files with 2 additions and 1 deletions
|
@ -803,7 +803,8 @@ function room_mt:handle_to_room(origin, stanza) -- presence changes and groupcha
|
|||
local _aff = item.attr.affiliation;
|
||||
local _rol = item.attr.role;
|
||||
if _aff and not _rol then
|
||||
if affiliation == "owner" or (affiliation == "admin" and _aff ~= "owner" and _aff ~= "admin") then
|
||||
if affiliation == "owner" or (affiliation == "admin" and _aff ~= "owner" and _aff ~= "admin")
|
||||
or (affiliation and affiliation ~= "outcast" and self:get_members_only() and self:get_whois() == "anyone") then
|
||||
local reply = st.reply(stanza):query("http://jabber.org/protocol/muc#admin");
|
||||
for jid, affiliation in pairs(self._affiliations) do
|
||||
if affiliation == _aff then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue