Skip to content
Snippets Groups Projects
Commit 12c46fd0 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Dont return None on has_mam()

Fixes #9368
parent d35a9f6a
No related branches found
No related tags found
No related merge requests found
......@@ -470,6 +470,7 @@ class MucCapsCache:
return True
if nbxmpp.NS_MAM_1 in self.cache[jid].features:
return True
return False
except (KeyError, AttributeError):
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment