From 8eb8769862176858e0b7c7e97fdd1409d539b53e Mon Sep 17 00:00:00 2001 From: Nicolas Cedilnik Date: Thu, 9 Jun 2022 15:33:02 +0200 Subject: XEP-0115: Make get_caps() async --- slixmpp/plugins/xep_0115/static.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slixmpp/plugins/xep_0115/static.py b/slixmpp/plugins/xep_0115/static.py index 74f2beb8..4bf77d75 100644 --- a/slixmpp/plugins/xep_0115/static.py +++ b/slixmpp/plugins/xep_0115/static.py @@ -60,7 +60,7 @@ class StaticCaps(object): return False if node in (None, ''): - info = self.caps.get_caps(jid) + info = await self.caps.get_caps(jid) if info and feature in info['features']: return True @@ -134,7 +134,7 @@ class StaticCaps(object): def get_verstring(self, jid, node, ifrom, data): 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) if verstring is None: return None -- cgit v1.2.3