Software /
code /
prosody
Changeset
831:e2d2095705dc
MUC: Workaround for a Gajim bug (it includes <x xmlns='http://jabber.org/protocol/muc'/> in nick change presences)
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Fri, 20 Feb 2009 03:52:04 +0500 |
parents | 830:c0554caf90e6 |
children | 832:282ae70db19f |
files | plugins/mod_muc.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;