Commit 0e160ed3 authored by Tijmen de Mes's avatar Tijmen de Mes

Skip public key messages

parent 633072e2
......@@ -208,6 +208,9 @@ class MessageManager(object, metaclass=Singleton):
content_type != 'text/pgp-private-key'):
return
if content_type.lower() == 'text/pgp-public-key':
return
from blink.contacts import URIUtils
contact, contact_uri = URIUtils.find_contact(sender.uri)
session_manager = SessionManager()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment