From 4b6e393ab98a7c116db779e8a17d6762210409ef Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 18 Jan 2001 23:29:04 +0000 Subject: Oops. Somewhere in one of the reorgs, the code to add new messages to the * providers/imap/camel-imap-folder.c (imap_update_summary): Oops. Somewhere in one of the reorgs, the code to add new messages to the CamelFolderChangeInfo structure got removed. Fix that. svn path=/trunk/; revision=7627 --- camel/providers/imap/camel-imap-folder.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'camel/providers/imap') diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 1c8d793074..56de2bbe06 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* camel-imap-folder.c: Abstract class for an imap folder */ +/* camel-imap-folder.c: class for an imap folder */ /* * Authors: Jeffrey Stedfast @@ -973,6 +973,7 @@ imap_update_summary (CamelFolder *folder, int first, int last, for (i = 0; i < messages->len; i++) { mi = messages->pdata[i]; camel_folder_summary_add (folder->summary, mi); + camel_folder_change_info_add_uid (changes, camel_message_info_uid (mi)); } g_ptr_array_free (messages, TRUE); } -- cgit v1.2.3