diff options
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/camel-maildir-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/local/camel-maildir-store.c b/camel/providers/local/camel-maildir-store.c index c60b162929..53952785d3 100644 --- a/camel/providers/local/camel-maildir-store.c +++ b/camel/providers/local/camel-maildir-store.c @@ -275,7 +275,7 @@ static int scan_dir(CamelStore *store, GHashTable *visited, char *root, const ch CAMEL_STORE_LOCK(store, cache_lock); folder = g_hash_table_lookup(store->folders, path); if (folder) - unread = camel_folder_get_message_count(folder); + unread = camel_folder_get_unread_message_count(folder); else unread = 0; CAMEL_STORE_UNLOCK(store, cache_lock); |