From d7a0bc9688023dba10032fafc19352e2d43f9e8d Mon Sep 17 00:00:00 2001 From: Not Zed Date: Thu, 20 May 2004 07:03:53 +0000 Subject: ** See #58388. 2004-05-20 Not Zed ** 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 --- mail/ChangeLog | 6 ++++++ mail/mail-mt.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 79f79e9515..d2b7461fb8 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,11 @@ 2004-05-20 Not Zed + ** 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 diff --git a/mail/mail-mt.c b/mail/mail-mt.c index 9fc3c113c8..e9830175f0 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -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) -- cgit v1.2.3