ignore "text/calendar" content type

This commit is contained in:
Son NK 2020-12-18 16:07:32 +01:00
parent e48f19afb5
commit 3015cd1dc0
1 changed files with 1 additions and 0 deletions

View File

@ -809,6 +809,7 @@ def replace(msg: Message, old, new) -> Message:
or content_type.startswith("audio/")
or content_type == "multipart/signed"
or content_type.startswith("application/")
or content_type == "text/calendar"
):
LOG.d("not applicable for %s", content_type)
return msg