diff options
author | Milan Crha <mcrha@redhat.com> | 2011-05-11 23:38:16 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-05-11 23:38:16 +0800 |
commit | f9a3112069857536ec14921746f506ffae5bd64d (patch) | |
tree | c72dd950c936082f0ddfcbf9cc3733d0e743ae6f /mail/em-folder-utils.c | |
parent | e72c7e8dda826fbb089832f778585191ea784bee (diff) | |
download | gsoc2013-evolution-f9a3112069857536ec14921746f506ffae5bd64d.tar.gz gsoc2013-evolution-f9a3112069857536ec14921746f506ffae5bd64d.tar.zst gsoc2013-evolution-f9a3112069857536ec14921746f506ffae5bd64d.zip |
Bug #649939 - Cann't create new folder (second shot)
The previous patch worked for local account only, for anything
which has '@' in account's UID it still failed.
Diffstat (limited to 'mail/em-folder-utils.c')
-rw-r--r-- | mail/em-folder-utils.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/em-folder-utils.c b/mail/em-folder-utils.c index 1a80d79ccb..c13337bf68 100644 --- a/mail/em-folder-utils.c +++ b/mail/em-folder-utils.c @@ -723,6 +723,7 @@ emfu_popup_new_folder_response (EMFolderSelector *emfs, const gchar *uri, *path; CamelStore *store = NULL; struct _EMCreateFolderTempData *emcftd; + GError *error = NULL; if (response != GTK_RESPONSE_OK) { gtk_widget_destroy ((GtkWidget *) emfs); @@ -736,7 +737,10 @@ emfu_popup_new_folder_response (EMFolderSelector *emfs, session = em_folder_tree_get_session (folder_tree); - if (!e_mail_folder_uri_parse (CAMEL_SESSION (session), uri, &store, NULL, NULL)) { + if (!e_mail_folder_uri_parse (CAMEL_SESSION (session), uri, &store, NULL, &error)) { + g_warning ("%s: Failed to parse folder uri: %s", G_STRFUNC, error ? error->message : "Unknown error"); + if (error) + g_error_free (error); return; } |