Remove exception catchall in omemo plugin as it's now handled in plugin_e2ee

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2019-08-25 00:47:50 +02:00
parent cd3f2a197b
commit 0e27485c36

View file

@ -155,10 +155,5 @@ class Plugin(E2EEPlugin):
'An error occured while fetching information on a recipient.\n%r' % exn,
)
return None
except Exception as exn:
self.display_error(
'An error occured while attempting to encrypt.\n%r' % exn,
)
raise
return None