# HG changeset patch # User Waqas Hussain # Date 1235083924 -18000 # Node ID e2d2095705dc0025e1ea2d571344b77b2879ec05 # Parent c0554caf90e616769bd19c49f162be2ed07e51af MUC: Workaround for a Gajim bug (it includes in nick change presences) diff -r c0554caf90e6 -r e2d2095705dc plugins/mod_muc.lua --- a/plugins/mod_muc.lua Fri Feb 20 02:23:21 2009 +0500 +++ b/plugins/mod_muc.lua Fri Feb 20 03:52:04 2009 +0500 @@ -258,7 +258,7 @@ end elseif not type then -- available if current_nick then - if #pr == #stanza then + if #pr == #stanza or current_nick ~= to then if current_nick == to then -- simple presence log("debug", "%s broadcasted presence", current_nick); rooms:get(room, current_nick).sessions[from] = pr;