diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-local-storage.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 7c9eecd879..d586926aff 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2002-09-26 Ettore Perazzoli <ettore@ximian.com> + + * e-local-storage.c (load_folder): Always return TRUE, even in the + unknown-type case. + 2002-09-25 Rodrigo Moya <rodrigo@ximian.com> * e-shell-importer.c (importer_file_page_new): set history_id on diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index a90a37ecf9..c5a19876c4 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -204,7 +204,7 @@ load_folder (const char *physical_path, e_folder_get_type_string (folder))) { g_warning ("Folder in %s has unknown type (%s)... ignoring", physical_path, e_folder_get_type_string (folder)); - return FALSE; + return TRUE; } new_folder (local_storage, path, folder); |