# HG changeset patch # User Kim Alvefur # Date 1348603415 -7200 # Node ID a30507061526f2c365d3ac663331a08412631b19 # Parent 3221746f4769476414937c3551060c6426777444 MUC: Fix traceback caused by faulty logic precedence. (thanks waqas, nulani) diff -r 3221746f4769 -r a30507061526 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Sun Sep 23 01:11:20 2012 +0500 +++ b/plugins/muc/muc.lib.lua Tue Sep 25 22:03:35 2012 +0200 @@ -522,7 +522,7 @@ 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