From 80f2cf74d94bf8efec5f73cf40a490ffecf5f541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sun, 20 Mar 2022 23:05:52 +0100 Subject: [PATCH] Stop declaring trust states until they're actually handled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- poezio_omemo/__init__.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/poezio_omemo/__init__.py b/poezio_omemo/__init__.py index 241331e..3dfa719 100644 --- a/poezio_omemo/__init__.py +++ b/poezio_omemo/__init__.py @@ -56,15 +56,15 @@ class Plugin(E2EEPlugin): # TODO: Look into blind trust stuff. # https://gist.github.com/mar-v-in/b683220a55bc65dcdafc809be9c5d0e4 - trust_states = { - 'accepted': { - 'verified', - 'accepted', - }, 'rejected': { - 'undecided', - 'distrusted', - }, - } + # trust_states = { + # 'accepted': { + # 'verified', + # 'accepted', + # }, 'rejected': { + # 'undecided', + # 'distrusted', + # }, + # } supported_tab_types = (DynamicConversationTab, StaticConversationTab, MucTab) default_config = {