diff options
Diffstat (limited to 'plugins/groupwise-features/share-folder-common.c')
-rw-r--r-- | plugins/groupwise-features/share-folder-common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/groupwise-features/share-folder-common.c b/plugins/groupwise-features/share-folder-common.c index 19d46bad0b..dcf470d06a 100644 --- a/plugins/groupwise-features/share-folder-common.c +++ b/plugins/groupwise-features/share-folder-common.c @@ -267,7 +267,7 @@ users_dialog_response (GtkWidget *dialog, gint response, struct ShareInfo *ssi) url = camel_url_new (uri, NULL); if (url != NULL) { service = camel_session_get_service_by_url ( - CAMEL_SESSION (session), url); + session, url, CAMEL_PROVIDER_STORE); camel_url_free (url); } @@ -319,7 +319,8 @@ new_folder_response (EMFolderSelector *emfs, gint response, EMFolderTreeModel *m url = camel_url_new (uri, NULL); if (url != NULL) { - service = camel_session_get_service_by_url (session, url); + service = camel_session_get_service_by_url ( + session, url, CAMEL_PROVIDER_STORE); camel_url_free (url); } |