2004-05-20  Not Zed  <NotZed@Ximian.com>

        ** See #58388.

        * mail-mt.c (mail_msg_check_error): surpress any errors about
        messages not found because of invalid uid's.  They're really just
        internal errors.

svn path=/trunk/; revision=26007
This commit is contained in:
Not Zed
2004-05-20 07:03:53 +00:00
committed by Michael Zucci
parent e714124dc7
commit d7a0bc9688
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,11 @@
2004-05-20 Not Zed <NotZed@Ximian.com>
** See #58388.
* mail-mt.c (mail_msg_check_error): surpress any errors about
messages not found because of invalid uid's. They're really just
internal errors.
** See #57583.
* message-list.c (build_tree): save/restore the selection when we

View File

@ -247,7 +247,8 @@ void mail_msg_check_error(void *msg)
return;
if (!camel_exception_is_set(&m->ex)
|| m->ex.id == CAMEL_EXCEPTION_USER_CANCEL)
|| m->ex.id == CAMEL_EXCEPTION_USER_CANCEL
|| m->ex.id == CAMEL_EXCEPTION_FOLDER_INVALID_UID)
return;
if (active_errors == NULL)