From 1926369859714f0e18eae6b7e709f416ea3ac152 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 11 May 2005 07:55:17 +0000 Subject: [PATCH] don't send an error iq after we process the roster iq (thx Alexey) close #251 --- src/common/connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/connection.py b/src/common/connection.py index 769c719e9..cc65350e2 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -318,6 +318,7 @@ class Connection: for group in item.getTags('group'): groups.append(group.getData()) self.dispatch('ROSTER_INFO', (jid, name, sub, ask, groups)) + raise common.xmpp.NodeProcessed def _BrowseResultCB(self, con, iq_obj): gajim.log.debug('BrowseResultCB')