aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-local.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mail-local.c')
-rw-r--r--mail/mail-local.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/mail-local.c b/mail/mail-local.c
index 666cfefbbd..cc34a61a7d 100644
--- a/mail/mail-local.c
+++ b/mail/mail-local.c
@@ -707,6 +707,7 @@ cleanup_register_folder (gpointer in_data, gpointer op_data,
CamelException *ex)
{
MailLocalFolder *local_folder = in_data;
+ int unread;
if (!local_folder->folder) {
g_free (local_folder);
@@ -720,8 +721,10 @@ cleanup_register_folder (gpointer in_data, gpointer op_data,
camel_object_hook_event (CAMEL_OBJECT (local_folder->folder),
"folder_changed", local_folder_changed_proxy,
local_folder);
+ unread = local_folder->last_unread;
+ local_folder->last_unread = 0;
local_folder_changed (CAMEL_OBJECT (local_folder->folder),
- NULL, local_folder);
+ GINT_TO_POINTER (unread), local_folder);
}
static const mail_operation_spec op_register_folder =