diff options
Diffstat (limited to 'camel/providers/local/camel-maildir-store.c')
-rw-r--r-- | camel/providers/local/camel-maildir-store.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/camel/providers/local/camel-maildir-store.c b/camel/providers/local/camel-maildir-store.c index 4d754e5f12..e26ab6b23e 100644 --- a/camel/providers/local/camel-maildir-store.c +++ b/camel/providers/local/camel-maildir-store.c @@ -271,18 +271,19 @@ static int scan_dir(CamelStore *store, GHashTable *visited, char *root, const ch base = path; /* if we have this folder open, get the real unread count */ + unread = -1; + CAMEL_STORE_LOCK(store, cache_lock); folder = g_hash_table_lookup(store->folders, path); if (folder) unread = camel_folder_get_unread_message_count(folder); - else - unread = 0; CAMEL_STORE_UNLOCK(store, cache_lock); /* if we dont have a folder, then scan the directory and get the unread count from there, which is reasonably cheap (on decent filesystem) */ /* Well we could get this from the summary, but this is more accurate */ - if (folder == NULL) { + if (folder == NULL + && (flags & CAMEL_STORE_FOLDER_INFO_FAST) == 0) { unread = 0; dir = opendir(new); if (dir) { |