MUC: Fix traceback caused by faulty logic precedence. (thanks waqas, nulani)

This commit is contained in:
Kim Alvefur 2012-09-25 22:03:35 +02:00
parent 4b8ade497e
commit 5db9a6c120

View file

@ -522,7 +522,7 @@ function room_mt:handle_to_occupant(origin, stanza) -- PM, vCards, etc
end
end
elseif not current_nick then -- not in room
if type == "error" or type == "result" and stanza.name == "iq" then
if (type == "error" or type == "result") and stanza.name == "iq" then
local id = stanza.attr.id;
stanza.attr.from, stanza.attr.to, stanza.attr.id = deconstruct_stanza_id(self, stanza);
if stanza.attr.id then