Software /
code /
prosody
Changeset
9612:abf9bacf77d4 0.11
MUC: Clarify condition with parenthesis
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 09 Nov 2018 18:40:13 +0100 |
parents | 9611:2700317f93e4 |
children | 9613:4d7b925652d9 |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Fri Nov 09 15:59:32 2018 +0100 +++ b/plugins/muc/muc.lib.lua Fri Nov 09 18:40:13 2018 +0100 @@ -969,8 +969,8 @@ -- 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);