Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/nbxmpp
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2020-02-02 11:02:01 +0300
committerPhilipp Hörist <philipp@hoerist.com>2020-02-02 11:02:16 +0300
commit37f5d46ac7529222f15be29781949759ce629f8c (patch)
treedad48eedf2d3b4e9dc4187f20365b3bcc5718fd6 /nbxmpp
parentd3db1fafa9b6693e3e6ef9561b52b6045887f3b2 (diff)
Smacks: Fix parsing error text on failed resume
Diffstat (limited to 'nbxmpp')
-rw-r--r--nbxmpp/smacks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/smacks.py b/nbxmpp/smacks.py
index 69d7072..bb08622 100644
--- a/nbxmpp/smacks.py
+++ b/nbxmpp/smacks.py
@@ -270,7 +270,7 @@ class Smacks(PlugIn):
stanza.getAttr('h'))
self._validate_ack(stanza, self._old_uqueue)
else:
- for tag in stanza.getTags():
+ for tag in stanza.getChildren():
if tag.getName() != 'text':
log.info(tag.getName())