diff options
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", |