diff --git a/slixmpp_omemo/__init__.py b/slixmpp_omemo/__init__.py index bcb6855..5e9f89f 100644 --- a/slixmpp_omemo/__init__.py +++ b/slixmpp_omemo/__init__.py @@ -446,8 +446,8 @@ class XEP_0384(BasePlugin): await asyncio.gather( *map( lambda did: self.fetch_bundle(jid, did), - self.get_active_devices(jid) - ), # type: ignore + await self.get_active_devices(jid) + ), return_exceptions=True, )