diff options
author | mathieui <mathieui@mathieui.net> | 2019-08-25 02:14:35 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-12-27 18:58:48 +0100 |
commit | e8dd6f0a91bfe59836bef58588e90b5c6fb1a1ed (patch) | |
tree | 9fdc4f973964d679eade5efaffcea3f4445ad2e3 /poezio/plugin_e2ee.py | |
parent | 04efd8ee07b4ea34f080570b1878d52ac9e2cc4a (diff) | |
download | poezio-e8dd6f0a91bfe59836bef58588e90b5c6fb1a1ed.tar.gz poezio-e8dd6f0a91bfe59836bef58588e90b5c6fb1a1ed.tar.bz2 poezio-e8dd6f0a91bfe59836bef58588e90b5c6fb1a1ed.tar.xz poezio-e8dd6f0a91bfe59836bef58588e90b5c6fb1a1ed.zip |
omemo: fix show_fingerprints (JID instead of str)
Diffstat (limited to 'poezio/plugin_e2ee.py')
-rw-r--r-- | poezio/plugin_e2ee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index fde7f10c..71f37f45 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -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: |