summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-04-08 15:58:48 -0400
committerLance Stout <lancestout@gmail.com>2012-04-08 15:58:48 -0400
commit9ffde5ab3706ca24b03dbea93c67810687c4b6ba (patch)
tree891caf15e38ca92b44fece11af85572ffb4a0352
parent272ddf9f0123c56dc7b0ac3c114ffa6b93943e26 (diff)
downloadslixmpp-9ffde5ab3706ca24b03dbea93c67810687c4b6ba.tar.gz
slixmpp-9ffde5ab3706ca24b03dbea93c67810687c4b6ba.tar.bz2
slixmpp-9ffde5ab3706ca24b03dbea93c67810687c4b6ba.tar.xz
slixmpp-9ffde5ab3706ca24b03dbea93c67810687c4b6ba.zip
Check for Iq results based on both the sender's JID and the ID value.
-rw-r--r--sleekxmpp/stanza/iq.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/sleekxmpp/stanza/iq.py b/sleekxmpp/stanza/iq.py
index 47d51b04..ad801af2 100644
--- a/sleekxmpp/stanza/iq.py
+++ b/sleekxmpp/stanza/iq.py
@@ -9,7 +9,7 @@
from sleekxmpp.stanza.rootstanza import RootStanza
from sleekxmpp.xmlstream import StanzaBase, ET
from sleekxmpp.xmlstream.handler import Waiter, Callback
-from sleekxmpp.xmlstream.matcher import MatcherId
+from sleekxmpp.xmlstream.matcher import StanzaPath
from sleekxmpp.exceptions import IqTimeout, IqError
@@ -187,14 +187,17 @@ class Iq(RootStanza):
if callback is not None and self['type'] in ('get', 'set'):
handler_name = 'IqCallback_%s' % self['id']
handler = Callback(handler_name,
- MatcherId(self['id']),
+ StanzaPath('iq@id=%s@from=%s' % (
+ self['id'], self['to'])),
callback,
once=True)
self.stream.register_handler(handler)
StanzaBase.send(self, now=now)
return handler_name
elif block and self['type'] in ('get', 'set'):
- waitfor = Waiter('IqWait_%s' % self['id'], MatcherId(self['id']))
+ waitfor = Waiter('IqWait_%s' % self['id'],
+ StanzaPath('iq@id=%s@from=%s' % (
+ self['id'], self['to'])))
self.stream.register_handler(waitfor)
StanzaBase.send(self, now=now)
result = waitfor.wait(timeout)