aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-09-15 19:39:57 +0200
committerKim Alvefur <zash@zash.se>2015-09-15 19:39:57 +0200
commitd74f55b64c5bdf137260d80b234a8c30cadaf4e3 (patch)
tree919c8395c481ca705dd56facda257d1c1917907c /plugins
parentd354bc41e91ae490da5d40807e5dd51d10da8c1f (diff)
downloadprosody-d74f55b64c5bdf137260d80b234a8c30cadaf4e3.tar.gz
prosody-d74f55b64c5bdf137260d80b234a8c30cadaf4e3.zip
MUC: Fix traceback in request for MUC affiliation lists by non-affiliated (thanks Lance)
Diffstat (limited to 'plugins')
-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 60b12ac8..cfc9dcff 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -762,7 +762,7 @@ function room_mt:handle_admin_query_get_command(origin, stanza)
if _aff and _aff_rank and not _rol then
-- 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];
+ local affiliation_rank = valid_affiliations[affiliation or "none"];
if affiliation_rank >= valid_affiliations.admin and affiliation_rank >= _aff_rank then
local reply = st.reply(stanza):query("http://jabber.org/protocol/muc#admin");
for jid in self:each_affiliation(_aff or "none") do