From c6b05312d9aad5d286ebe85a05c6c62f3a1afddd Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 4 Oct 2005 12:26:09 +0000 Subject: [PATCH] add FIXME for MSN transport workaround --- src/common/connection.py | 2 ++ src/gajim.py | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/common/connection.py b/src/common/connection.py index 16f905aff..4293a3d9f 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -276,6 +276,8 @@ class Connection: if xtag.getNamespace() == common.xmpp.NS_MUC_USER and xtag.getTag('invite'): invite = xtag + # FIXME: Msn transport (CMSN1.2.1 and PyMSN0.10) doesn't follow the JEP + # remove in 2007 elif xtag.getNamespace() == common.xmpp.NS_CONFERENCE: room_jid = xtag.getAttr('jid') self.dispatch('GC_INVITATION', (room_jid, frm, '', None)) diff --git a/src/gajim.py b/src/gajim.py index 5325d6625..a456ed087 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -376,7 +376,9 @@ class Interface: self.remote.raise_signal('ContactAbsence', (account, array)) # stop non active file transfers else: - # It's maybe a GC_NOTIFY + # FIXME: Msn transport (CMSN1.2.1 and PyMSN0.10) doesn't follow the JEP + # remove in 2007 + # It's maybe a GC_NOTIFY (specialy for MSN gc) self.handle_event_gc_notify(account, (jid, array[1], array[2], array[3], None, None, None, None, None, None, None))