Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-04-18 22:18:39 +0300
committerlovetox <philipp@hoerist.com>2022-04-18 22:18:39 +0300
commit60654ac32c3d8f3a4c0d47b2cd07d2954b6f9b4b (patch)
tree7f03c481147b17b528a0b9f07d679e473d606a1c
parent1ecf2f390d5ea26ec241fb1441f33e2b4a4e16f7 (diff)
[openpgp] Don’t show error when keys are missing on activation
-rw-r--r--openpgp/pgpplugin.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/openpgp/pgpplugin.py b/openpgp/pgpplugin.py
index 2ce5850..0673d65 100644
--- a/openpgp/pgpplugin.py
+++ b/openpgp/pgpplugin.py
@@ -139,10 +139,6 @@ class OpenPGPPlugin(GajimPlugin):
jid, only_trusted=False)
if not keys:
con.get_module('OpenPGP').request_keylist(JID.from_string(jid))
- ErrorDialog(
- _('No OpenPGP key'),
- _('We didnt receive a OpenPGP key from this contact.'))
- return
return True
from openpgp.gtk.wizard import KeyWizard