ignore text/csv in replace()

This commit is contained in:
Son NK 2020-12-31 18:03:42 +01:00
parent a34af98de8
commit 3179d70df1
1 changed files with 1 additions and 0 deletions

View File

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