aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/muc.lib.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-09 18:40:13 +0100
committerKim Alvefur <zash@zash.se>2018-11-09 18:40:13 +0100
commita13259451a7b08b5321e7f47dce94482e862d1ac (patch)
tree568815c89ffbc669cc2584869e1a6cabd04581dc /plugins/muc/muc.lib.lua
parent8226d6de4cf4c690167847de3f56f0b30de1294f (diff)
downloadprosody-a13259451a7b08b5321e7f47dce94482e862d1ac.tar.gz
prosody-a13259451a7b08b5321e7f47dce94482e862d1ac.zip
MUC: Clarify condition with parenthesis
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r--plugins/muc/muc.lib.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index 65f339ed..b64404c0 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -969,8 +969,8 @@ function room_mt:handle_admin_query_get_command(origin, stanza)
-- You need to be at least an admin, and be requesting info about your affifiliation or lower
-- 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
+ 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
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);