mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
Pass the Iq stanza to disco item handlers.
This commit is contained in:
parent
62e6d6fb4c
commit
85e9042db6
1 changed files with 2 additions and 1 deletions
|
@ -579,7 +579,8 @@ class xep_0030(base_plugin):
|
||||||
jid = iq['to'].bare
|
jid = iq['to'].bare
|
||||||
items = self._run_node_handler('get_items',
|
items = self._run_node_handler('get_items',
|
||||||
jid,
|
jid,
|
||||||
iq['disco_items']['node'])
|
iq['disco_items']['node'],
|
||||||
|
iq)
|
||||||
iq.reply()
|
iq.reply()
|
||||||
if items:
|
if items:
|
||||||
iq.set_payload(items.xml)
|
iq.set_payload(items.xml)
|
||||||
|
|
Loading…
Reference in a new issue