From dc4b1c73676e87bf1984c3f0fb615c04a402d485 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 30 Jan 2023 20:37:16 +0100 Subject: [PATCH] XEP-0115: fix a missing await in caps fetching --- slixmpp/plugins/xep_0115/caps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slixmpp/plugins/xep_0115/caps.py b/slixmpp/plugins/xep_0115/caps.py index c52d1166..a606d662 100644 --- a/slixmpp/plugins/xep_0115/caps.py +++ b/slixmpp/plugins/xep_0115/caps.py @@ -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