Software /
code /
prosody
Diff
plugins/muc/muc.lib.lua @ 11713:7623767df468
Merge 0.11->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 23 Jul 2021 17:13:06 +0200 |
parent | 11498:d61ec5e6ee16 |
parent | 11712:d117b92fd8e4 |
child | 11806:6f7d6712e250 |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Mon Jul 19 17:07:59 2021 +0200 +++ b/plugins/muc/muc.lib.lua Fri Jul 23 17:13:06 2021 +0200 @@ -1110,7 +1110,7 @@ -- e.g. an admin can't ask for a list of owners local affiliation_rank = valid_affiliations[affiliation or "none"]; if (affiliation_rank >= valid_affiliations.admin and affiliation_rank >= _aff_rank) - or (self:get_whois() == "anyone") then + or (self:get_members_only() and self:get_whois() == "anyone" and affiliation_rank >= valid_affiliations.member) then local reply = st.reply(stanza):query("http://jabber.org/protocol/muc#admin"); for jid in self:each_affiliation(_aff or "none") do local nick = self:get_registered_nick(jid);