diff options
-rw-r--r-- | mail/component-factory.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 5e3ece1f61..18999dc3ed 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -441,7 +441,8 @@ mail_load_storages (GNOME_Evolution_Shell shell, const GSList *sources, gboolean * That issue can't be resolved on the provider level * -- it's a per-URL problem. */ - if (!(prov->flags & (CAMEL_PROVIDER_IS_STORAGE | CAMEL_PROVIDER_IS_REMOTE))) + if (!(prov->flags & CAMEL_PROVIDER_IS_STORAGE) || + !(prov->flags & CAMEL_PROVIDER_IS_REMOTE)) continue; store = camel_session_get_service (session, service->url, |