aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-mt.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-20 15:03:53 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-20 15:03:53 +0800
commitd7a0bc9688023dba10032fafc19352e2d43f9e8d (patch)
treed9a58df9ddf50cddd8df9203026bf98ae0b553d3 /mail/mail-mt.c
parente714124dc7b940446165a901cdae6732dd647bfb (diff)
downloadgsoc2013-evolution-d7a0bc9688023dba10032fafc19352e2d43f9e8d.tar
gsoc2013-evolution-d7a0bc9688023dba10032fafc19352e2d43f9e8d.tar.gz
gsoc2013-evolution-d7a0bc9688023dba10032fafc19352e2d43f9e8d.tar.bz2
gsoc2013-evolution-d7a0bc9688023dba10032fafc19352e2d43f9e8d.tar.lz
gsoc2013-evolution-d7a0bc9688023dba10032fafc19352e2d43f9e8d.tar.xz
gsoc2013-evolution-d7a0bc9688023dba10032fafc19352e2d43f9e8d.tar.zst
gsoc2013-evolution-d7a0bc9688023dba10032fafc19352e2d43f9e8d.zip
** See #58388.
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
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r--mail/mail-mt.c3
1 files changed, 2 insertions, 1 deletions
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)