Skip to content
Snippets Groups Projects
Commit 2ebf1309 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix logic for #2680

parent 483ccdf3
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ def _ReceivedRegInfo(con, resp, agent):
return
df=DataForm(typ='form')
for i in resp.getQueryPayload():
if isinstance(i, Iq):
if not isinstance(i, Node):
pass
elif i.getName()=='instructions':
df.addInstructions(i.getData())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment