diff options
author | Milan Crha <mcrha@redhat.com> | 2013-01-22 02:08:11 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-01-22 02:08:11 +0800 |
commit | dde7200f40a26aa9a70949a56aae0a53bbf67afd (patch) | |
tree | f4e5ad1343aa66e517af7b646fd7f916fc38bb02 /mail | |
parent | 0582520db487e10ecaf9fc0acbb7e19a723c05c6 (diff) | |
download | gsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.tar.gz gsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.tar.zst gsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.zip |
Exclude also text/calendar in a fix for bug #692009
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-request.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/e-mail-request.c b/mail/e-mail-request.c index 1deff94414..2c2fb02ce6 100644 --- a/mail/e-mail-request.c +++ b/mail/e-mail-request.c @@ -143,7 +143,8 @@ handle_mail_request (GSimpleAsyncResult *res, if (context.mode == E_MAIL_FORMATTER_MODE_RAW && content_type && camel_content_type_is (content_type, "text", "*") && !camel_content_type_is (content_type, "text", "plain") && - !camel_content_type_is (content_type, "text", "html")) { + !camel_content_type_is (content_type, "text", "html") && + !camel_content_type_is (content_type, "text", "calendar")) { CamelDataWrapper *dw; CamelStream *raw_content; GByteArray *ba; |