Handle callback return value case.
This commit is contained in:
parent
9f1648328f
commit
6a07e7cbe3
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ class ClientXMPP(BaseXMPP):
|
|||
'subscription': subscription,
|
||||
'groups': groups}}
|
||||
response = iq.send(block, timeout, callback)
|
||||
if response in [False, None]:
|
||||
if response in [False, None] or not isinstance(response, Iq):
|
||||
return response
|
||||
return response['type'] == 'result'
|
||||
|
||||
|
|
Loading…
Reference in a new issue