diff options
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 49871b60e6..6caa8e82b5 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2001-01-18 Dan Winship <danw@ximian.com> + + * 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. + 2001-01-17 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-summary.c (message_info_load): Add 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 <fejj@helixcode.com> @@ -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); } |