omemo: fix show_fingerprints (JID instead of str)

This commit is contained in:
mathieui 2019-08-25 02:14:35 +02:00 committed by Maxime “pep” Buquet
parent 04efd8ee07
commit e8dd6f0a91

View file

@ -271,7 +271,7 @@ class E2EEPlugin(BasePlugin):
jid = self.api.current_tab().name
else:
jid = args[0]
self._show_fingerprints(jid)
self._show_fingerprints(JID(jid))
@command_args_parser.quoted(2)
def __command_set_state_global(self, args, state='') -> None: