aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-09 18:49:45 +0100
committerKim Alvefur <zash@zash.se>2018-11-09 18:49:45 +0100
commit60aa42033a2f87013638a7318fb1ea8997e074a2 (patch)
tree61a984d8fa7c8cadcda91bf55bd0bf10daf492f5 /plugins/muc
parenta13259451a7b08b5321e7f47dce94482e862d1ac (diff)
downloadprosody-60aa42033a2f87013638a7318fb1ea8997e074a2.tar.gz
prosody-60aa42033a2f87013638a7318fb1ea8997e074a2.zip
MUC: Allow anyone read access to all affiliation lists in non-anonymous rooms (fixes #1230)
Diffstat (limited to 'plugins/muc')
-rw-r--r--plugins/muc/muc.lib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index b64404c0..4060535a 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -970,7 +970,7 @@ function room_mt:handle_admin_query_get_command(origin, stanza)
-- 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);