diff options
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/camel-maildir-store.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/camel/providers/local/camel-maildir-store.c b/camel/providers/local/camel-maildir-store.c index 056ac22d0c..33daf0521e 100644 --- a/camel/providers/local/camel-maildir-store.c +++ b/camel/providers/local/camel-maildir-store.c @@ -248,6 +248,11 @@ fill_fi(CamelStore *store, CamelFolderInfo *fi, guint32 flags) CamelFolder *folder; folder = camel_object_bag_get(store->folders, fi->full_name); + + if (folder == NULL + && (flags & CAMEL_STORE_FOLDER_INFO_FAST) == 0) + folder = camel_store_get_folder(store, fi->full_name, 0, NULL); + if (folder) { if ((flags & CAMEL_STORE_FOLDER_INFO_FAST) == 0) camel_folder_refresh_info(folder, NULL); |