fix logic for #2680
This commit is contained in:
parent
483ccdf35a
commit
2ebf1309de
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ def _ReceivedRegInfo(con, resp, agent):
|
||||||
return
|
return
|
||||||
df=DataForm(typ='form')
|
df=DataForm(typ='form')
|
||||||
for i in resp.getQueryPayload():
|
for i in resp.getQueryPayload():
|
||||||
if isinstance(i, Iq):
|
if not isinstance(i, Node):
|
||||||
pass
|
pass
|
||||||
elif i.getName()=='instructions':
|
elif i.getName()=='instructions':
|
||||||
df.addInstructions(i.getData())
|
df.addInstructions(i.getData())
|
||||||
|
|
Loading…
Add table
Reference in a new issue