From a2b534c040866346d58506346d76c288f2a2171f Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Sun, 15 Feb 2009 14:13:21 +0000
Subject: [PATCH] really fix dispatcher to support several waiting stanza at
 the same time. Fix #4299

---
 src/common/xmpp/dispatcher_nb.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/common/xmpp/dispatcher_nb.py b/src/common/xmpp/dispatcher_nb.py
index 73b8c2e3e8..f5335d0e57 100644
--- a/src/common/xmpp/dispatcher_nb.py
+++ b/src/common/xmpp/dispatcher_nb.py
@@ -469,9 +469,10 @@ class XMPPDispatcher(PlugIn):
 				# would have placed the reply stanza in there
 				continue
 			if _id in self.on_responses:
-				self._owner.onreceive(None)
+				if len(self._expected) == 1:
+					self._owner.onreceive(None)
 				resp, args = self.on_responses[_id]
-				del(self.on_responses[_id])
+				del self.on_responses[_id]
 				if args is None:
 					resp(_iq)
 				else:
-- 
GitLab