aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-01-22 02:08:11 +0800
committerMilan Crha <mcrha@redhat.com>2013-01-22 02:08:11 +0800
commitdde7200f40a26aa9a70949a56aae0a53bbf67afd (patch)
treef4e5ad1343aa66e517af7b646fd7f916fc38bb02 /mail
parent0582520db487e10ecaf9fc0acbb7e19a723c05c6 (diff)
downloadgsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.tar
gsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.tar.gz
gsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.tar.bz2
gsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.tar.lz
gsoc2013-evolution-dde7200f40a26aa9a70949a56aae0a53bbf67afd.tar.xz
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.c3
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;