aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-parser-multipart-related.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-04-05 02:44:40 +0800
committerMilan Crha <mcrha@redhat.com>2013-04-05 02:44:40 +0800
commit186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99 (patch)
treec5e58ff2f2faf5e4fb77c589dec444e3cc7d6c04 /em-format/e-mail-parser-multipart-related.c
parente9ca986516bab631fd0c83c2569c3aa82eac3cdd (diff)
downloadgsoc2013-evolution-186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99.tar
gsoc2013-evolution-186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99.tar.gz
gsoc2013-evolution-186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99.tar.bz2
gsoc2013-evolution-186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99.tar.lz
gsoc2013-evolution-186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99.tar.xz
gsoc2013-evolution-186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99.tar.zst
gsoc2013-evolution-186f5dbd1fc9f5fe3292b5f07277f6d403c5ca99.zip
Show parts with Content-ID of multipart/mixed as attachments
The multipart/mixed should behave differently than multipart/related, because subparts of multipart/mixed are not meant to reference each other by default, thus the subparts should be shown as attachments. This was reported at https://bugzilla.redhat.com/show_bug.cgi?id=947409
Diffstat (limited to 'em-format/e-mail-parser-multipart-related.c')
-rw-r--r--em-format/e-mail-parser-multipart-related.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/em-format/e-mail-parser-multipart-related.c b/em-format/e-mail-parser-multipart-related.c
index e2ed728215..c90e5bf31d 100644
--- a/em-format/e-mail-parser-multipart-related.c
+++ b/em-format/e-mail-parser-multipart-related.c
@@ -125,7 +125,7 @@ empe_mp_related_parse (EMailParserExtension *extension,
for (link = head; link != NULL; link = g_list_next (link)) {
EMailPart *mail_part = link->data;
- /* Don't render the part on it's own! */
+ /* Don't render the part on its own! */
if (e_mail_part_utils_body_refers (html_body, mail_part->cid))
mail_part->is_hidden = TRUE;
}