From f6b3a0c6cffa5ebf10d20c20b5cadd575c91fe81 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 12 Feb 2015 12:17:01 +0100 Subject: Fix the uses of stanza.reply() This is relying on the stanzas being copied for each handler. We no longer do that for performance reasons, so instead of editing the copy in-place, stanza.reply() now returns a new stanza. --- slixmpp/plugins/xep_0030/disco.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'slixmpp/plugins/xep_0030/disco.py') diff --git a/slixmpp/plugins/xep_0030/disco.py b/slixmpp/plugins/xep_0030/disco.py index 3fb005a9..c8c18ea7 100644 --- a/slixmpp/plugins/xep_0030/disco.py +++ b/slixmpp/plugins/xep_0030/disco.py @@ -634,7 +634,7 @@ class XEP_0030(BasePlugin): info['id'] = iq['id'] info.send() else: - iq.reply() + iq = iq.reply() if info: info = self._fix_default_info(info) iq.set_payload(info.xml) @@ -674,7 +674,7 @@ class XEP_0030(BasePlugin): if isinstance(items, Iq): items.send() else: - iq.reply() + iq = iq.reply() if items: iq.set_payload(items.xml) iq.send() -- cgit v1.2.3