mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
Fix same error for get_info default behaviour.
This commit is contained in:
parent
145f577bde
commit
13a01beb07
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ class xep_0030(base_plugin):
|
|||
iq['type'] = 'get'
|
||||
iq['disco_info']['node'] = node if node else ''
|
||||
return iq.send(timeout=kwargs.get('timeout', None),
|
||||
block=kwargs.get('block', None),
|
||||
block=kwargs.get('block', True),
|
||||
callback=kwargs.get('callback', None))
|
||||
|
||||
def get_items(self, jid=None, node=None, local=False, **kwargs):
|
||||
|
|
Loading…
Reference in a new issue