diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 9 | ||||
-rw-r--r-- | mail/mail-tools.c | 11 |
2 files changed, 10 insertions, 10 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 3cfa062846..10b6ac4d71 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,7 +1,12 @@ +2001-09-20 Jeffrey Stedfast <fejj@ximian.com> + + * mail-tools.c (mail_tool_uri_to_folder): Don't "note" the folder + if we failed to get it. + 2001-09-20 Iain Holmes <iain@ximian.com> - * mail-account-gui.c (mail_account_gui_new): Set the sensitivity of the - edit buttons correctly. + * mail-account-gui.c (mail_account_gui_new): Set the sensitivity + of the edit buttons correctly. 2001-09-20 <NotZed@Ximian.com> diff --git a/mail/mail-tools.c b/mail/mail-tools.c index 250e7c2f06..16e37047d9 100644 --- a/mail/mail-tools.c +++ b/mail/mail-tools.c @@ -360,14 +360,9 @@ mail_tool_uri_to_folder (const char *uri, CamelException *ex) camel_object_unref (CAMEL_OBJECT (store)); } - if (camel_exception_is_set (ex)) { - if (folder) { - camel_object_unref (CAMEL_OBJECT (folder)); - folder = NULL; - } - } else { - vfolder_register_source(folder); - mail_note_folder(folder); + if (folder) { + vfolder_register_source (folder); + mail_note_folder (folder); } camel_url_free (url); |