XEP-0115: fix a missing await in caps fetching
This commit is contained in:
parent
4a6064772c
commit
dc4b1c7367
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ class XEP_0115(BasePlugin):
|
|||
if pres['caps']['hash'] not in self.hashes:
|
||||
try:
|
||||
log.debug("Unknown caps hash: %s", pres['caps']['hash'])
|
||||
self.xmpp['xep_0030'].get_info(jid=pres['from'], ifrom=ifrom)
|
||||
await self.xmpp['xep_0030'].get_info(jid=pres['from'], ifrom=ifrom)
|
||||
return
|
||||
except XMPPError:
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue