diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-09-11 04:26:23 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-09-11 04:26:23 +0800 |
commit | 59431ce6f1c83c2549a3aca0ecc0b8be32d086a1 (patch) | |
tree | d7d6a3cc3fdc7c9c3fc3600c9a40fa42333a7269 /camel | |
parent | 264925d54008c4310168fa69f30b8764d51cbe62 (diff) | |
download | gsoc2013-evolution-59431ce6f1c83c2549a3aca0ecc0b8be32d086a1.tar gsoc2013-evolution-59431ce6f1c83c2549a3aca0ecc0b8be32d086a1.tar.gz gsoc2013-evolution-59431ce6f1c83c2549a3aca0ecc0b8be32d086a1.tar.bz2 gsoc2013-evolution-59431ce6f1c83c2549a3aca0ecc0b8be32d086a1.tar.lz gsoc2013-evolution-59431ce6f1c83c2549a3aca0ecc0b8be32d086a1.tar.xz gsoc2013-evolution-59431ce6f1c83c2549a3aca0ecc0b8be32d086a1.tar.zst gsoc2013-evolution-59431ce6f1c83c2549a3aca0ecc0b8be32d086a1.zip |
Clear the exception even if we failed to get the message (part) from the
2002-09-10 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-folder.c
(camel_imap_folder_fetch_data): Clear the exception even if we
failed to get the message (part) from the imap-message-cache if we
are online and able to try fetching it from the IMAP server.
svn path=/trunk/; revision=18035
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 7 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 508c2c932b..cf810f8551 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,10 @@ +2002-09-10 Jeffrey Stedfast <fejj@ximian.com> + + * providers/imap/camel-imap-folder.c + (camel_imap_folder_fetch_data): Clear the exception even if we + failed to get the message (part) from the imap-message-cache if we + are online and able to try fetching it from the IMAP server. + 2002-09-10 Not Zed <NotZed@Ximian.com> * camel-data-cache.c (data_cache_expire): Remove the hash table diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 0f77d80d75..da59669783 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -2430,6 +2430,7 @@ camel_imap_folder_fetch_data (CamelImapFolder *imap_folder, const char *uid, return NULL; } + camel_exception_clear (ex); if (store->server_level < IMAP_LEVEL_IMAP4REV1 && !*section_text) { response = camel_imap_command (store, folder, ex, "UID FETCH %s RFC822.PEEK", |