Merge branch 'fix-xep_0115-static' into 'master'
XEP-0115: Make get_caps() async See merge request poezio/slixmpp!203
This commit is contained in:
commit
1f47acaec1
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ class StaticCaps(object):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if node in (None, ''):
|
if node in (None, ''):
|
||||||
info = self.caps.get_caps(jid)
|
info = await self.caps.get_caps(jid)
|
||||||
if info and feature in info['features']:
|
if info and feature in info['features']:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -134,7 +134,7 @@ class StaticCaps(object):
|
||||||
def get_verstring(self, jid, node, ifrom, data):
|
def get_verstring(self, jid, node, ifrom, data):
|
||||||
return self.jid_vers.get(jid, None)
|
return self.jid_vers.get(jid, None)
|
||||||
|
|
||||||
def get_caps(self, jid, node, ifrom, data):
|
async def get_caps(self, jid, node, ifrom, data):
|
||||||
verstring = data.get('verstring', None)
|
verstring = data.get('verstring', None)
|
||||||
if verstring is None:
|
if verstring is None:
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Reference in a new issue