MUC: Allow anyone read access to all affiliation lists in non-anonymous rooms (fixes #1230) 0.11
authorKim Alvefur <zash@zash.se>
Fri, 09 Nov 2018 18:49:45 +0100
branch0.11
changeset 9617 4d7b925652d9
parent 9616 abf9bacf77d4
child 9618 7d1dbacda48a
child 9620 61376a3c0c1d
MUC: Allow anyone read access to all affiliation lists in non-anonymous rooms (fixes #1230)
plugins/muc/muc.lib.lua
--- a/plugins/muc/muc.lib.lua	Fri Nov 09 18:40:13 2018 +0100
+++ b/plugins/muc/muc.lib.lua	Fri Nov 09 18:49:45 2018 +0100
@@ -970,7 +970,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_members_only() and self:get_whois() == "anyone" and affiliation_rank >= valid_affiliations.member) then
+		or (self:get_whois() == "anyone") 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);