diff options
-rw-r--r-- | slixmpp/plugins/xep_0030/disco.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0030/disco.py b/slixmpp/plugins/xep_0030/disco.py index b89c7258..7a682676 100644 --- a/slixmpp/plugins/xep_0030/disco.py +++ b/slixmpp/plugins/xep_0030/disco.py @@ -299,11 +299,11 @@ class XEP_0030(BasePlugin): return self.api['has_identity'](jid, node, ifrom, data) async def find_identities(category, type_, domain=None, timeout=None, - **kwargs): + cached=True, **kwargs): if domain is None: domain = self.xmpp.boundjid.domain - if domain not in self.domain_infos: + if not cached or domain not in self.domain_infos: infos = [self.get_info( domain, timeout=timeout, **kwargs)] iq_items = await self.get_items( |