plugins/muc/muc.lib.lua
changeset 6126 122e0f26e8f6
parent 6125 4a35a0281d8a
child 6127 a66ebc5d0ab5
--- a/plugins/muc/muc.lib.lua	Wed Mar 19 17:33:32 2014 -0400
+++ b/plugins/muc/muc.lib.lua	Wed Mar 19 17:46:25 2014 -0400
@@ -862,8 +862,6 @@
 function room_mt:handle_admin_item_get_command(origin, stanza)
 	local actor = stanza.attr.from;
 	local affiliation = self:get_affiliation(actor);
-	local current_nick = self:get_occupant_jid(actor);
-	local role = current_nick and self._occupants[current_nick].role or self:get_default_role(affiliation);
 	local item = stanza.tags[1].tags[1];
 	local _aff = item.attr.affiliation;
 	local _rol = item.attr.role;
@@ -882,8 +880,8 @@
 			return true;
 		end
 	elseif _rol and not _aff then
+		local role = self:get_role(self:get_occupant_jid(actor)) or self:get_default_role(affiliation);
 		if role == "moderator" then
-			-- TODO allow admins and owners not in room? Provide read-only access to everyone who can see the participants anyway?
 			if _rol == "none" then _rol = nil; end
 			local reply = st.reply(stanza):query("http://jabber.org/protocol/muc#admin");
 			for occupant_jid, occupant in pairs(self._occupants) do