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:
authorlovetox <philipp@hoerist.com>2020-04-11 23:03:56 +0300
committerlovetox <philipp@hoerist.com>2020-04-11 23:03:56 +0300
commitb169eb1a940d9ee06115c30117ce923d1b3b9f57 (patch)
tree232772595ff7440e45041595d2a768a6dfe90722 /nbxmpp
parent5d2bcd74e1ce6d798d39e348be6d897e120a9c98 (diff)
EntityCaps: Add missing node on disco info reply
Diffstat (limited to 'nbxmpp')
-rw-r--r--nbxmpp/modules/entity_caps.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/nbxmpp/modules/entity_caps.py b/nbxmpp/modules/entity_caps.py
index 46abcab..7636e40 100644
--- a/nbxmpp/modules/entity_caps.py
+++ b/nbxmpp/modules/entity_caps.py
@@ -57,6 +57,7 @@ class EntityCaps(BaseModule):
return
iq = stanza.buildReply('result')
+ iq.setQuerynode(self._node)
query = iq.getQuery()
for identity in self._caps.identities:
query.addChild(node=identity.get_node())