From ecdd036237b4a78a08cb0a72a651b2077f6c721e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Tue, 27 Aug 2019 23:41:13 +0200 Subject: omemo: Update get_fingerprints with slixmpp-omemo changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit slixmpp-omemo's get_trust_for_jid doesn't provide fingerprints directly anymore, it simply wraps the omemo lib method. Signed-off-by: Maxime “pep” Buquet --- plugins/omemo_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/omemo_plugin.py b/plugins/omemo_plugin.py index 55adda14..c59e0219 100644 --- a/plugins/omemo_plugin.py +++ b/plugins/omemo_plugin.py @@ -77,7 +77,7 @@ class Plugin(E2EEPlugin): # later on. devices['active'].update(devices['inactive']) return [ - trust['fingerprint'] + slixmpp_omemo.fp_from_ik(trust['key']) for trust in devices['active'].values() if trust is not None ] -- cgit v1.2.3