aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-local-storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r--shell/e-local-storage.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index e843b8ddd6..361f2e2044 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -155,8 +155,10 @@ load_folder (const char *physical_path, const char *path, gpointer data)
EFolder *folder;
folder = e_local_folder_new_from_path (physical_path);
- if (folder == NULL)
- return FALSE;
+ if (folder == NULL) {
+ g_warning ("No folder metadata in %s... ignoring", physical_path);
+ return TRUE;
+ }
new_folder (local_storage, path, folder);
return TRUE;