diff options
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index a5f4007b6d..795bfefa5d 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1012,7 +1012,7 @@ handle_text_plain (CamelMimePart *part, const char *mime_type, * has decided to call text/plain because it starts with English * text...) */ - check_specials = (g_strcasecmp (mime_type, "text/plain") == 0); + check_specials = !g_strcasecmp (mime_type, "text/plain") || !g_strcasecmp (mime_type, "application/pgp"); p = text; while (p && check_specials) { |