aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features/status-track.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/groupwise-features/status-track.c')
-rw-r--r--plugins/groupwise-features/status-track.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/groupwise-features/status-track.c b/plugins/groupwise-features/status-track.c
index 2ff2764a12..61c1ac25f0 100644
--- a/plugins/groupwise-features/status-track.c
+++ b/plugins/groupwise-features/status-track.c
@@ -73,7 +73,9 @@ get_selected_message (EShellView *shell_view,
*folder = e_mail_reader_get_folder (reader);
*selected_uid = g_strdup (g_ptr_array_index (uids, 0));
- msg = camel_folder_get_message (*folder, *selected_uid, NULL);
+ /* FIXME Not passing a GCancellable or GError here. */
+ msg = camel_folder_get_message (
+ *folder, *selected_uid, NULL, NULL);
}
em_utils_uids_free (uids);