aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/mail-callbacks.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 15e91aa75d..458c383684 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-19 Dan Winship <danw@ximian.com>
+
+ * mail-callbacks.c (create_folders): Pass the actual unread
+ message count, not just whether or not it's > 0. Fixes ximian
+ 9089.
+
2001-09-19 <NotZed@Ximian.com>
* component-factory.c: Added missing header.
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index c2289b6898..f2ff840711 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -2262,12 +2262,12 @@ create_folders (EvolutionStorage *storage, const char *prefix, CamelFolderInfo *
evolution_storage_new_folder (storage, path, fi->name,
"vtrash", fi->url,
fi->name, /* description */
- fi->unread_message_count > 0);
+ fi->unread_message_count);
else
evolution_storage_new_folder (storage, path, fi->name,
"mail", fi->url,
fi->name, /* description */
- fi->unread_message_count > 0);
+ fi->unread_message_count);
if (fi->child)
create_folders (storage, path, fi->child);
53969ce'>Upgrade to 2.3.1. [0]brooks2012-07-313-4/+7 * Update to 2.2.2brooks2011-02-124-21/+50 * - Use GOOGLE_CODE/LOCAL macromiwi2011-02-051-3/+4 * Move to the new distribution site on googlecode and upgrade to 2.1.1.brooks2010-12-095-28/+18 * Upgrade to 1.4.3 which fixes all of the bugs I had patched around and more.brooks2009-02-149-153/+16 * - Make Python 2.5.1 the default Python versionalexbl2007-07-302-19/+3 * Fix a couple bugs and remove the IGNORE variable:brooks2007-07-078-2/+164 * Further testing indicates that a majority of connections fail,brooks2007-07-061-0/+2