From 26889bef61bc32efd202bad6e736ac2fcaf586e0 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Tue, 10 Nov 2009 14:26:19 +0100 Subject: Bug #601218 - Accepted meeting doesn't show attachments in calendar view --- calendar/gui/dialogs/comp-editor.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'calendar/gui/dialogs') diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 4d3c0af523..99dc3ea851 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -2452,6 +2452,12 @@ attachment_loaded_cb (EAttachment *attachment, */ file_info = e_attachment_get_file_info (attachment); + if (!file_info) { + /* failed to load an attachment file */ + e_attachment_load_handle_error (attachment, result, parent); + return; + } + display_name = g_file_info_get_display_name (file_info); uid = g_object_get_data (G_OBJECT (attachment), "uid"); @@ -2703,12 +2709,13 @@ real_send_comp (CompEditor *editor, ECalComponentItipMethod method, gboolean str for (attach = mime_attach_list; attach; attach = attach->next) { struct CalMimeAttach *cma = (struct CalMimeAttach *) attach->data; - attach_list = g_slist_append (attach_list, cma->content_id); + attach_list = g_slist_append (attach_list, g_strconcat ("cid:", cma->content_id, NULL)); } if (attach_list) { e_cal_component_set_attachment_list (send_comp, attach_list); + g_slist_foreach (attach_list, (GFunc) g_free, NULL); g_slist_free (attach_list); } -- cgit v1.2.3