diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-07-13 22:11:34 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-07-13 22:11:34 +0800 |
commit | 9cbd7884b2c831ebfcd51391829b53f1986ab7b3 (patch) | |
tree | e88d3108db460763cf1c114c61a1b5364b0f2278 | |
parent | f9ac993fdabacecd795037516244840c2142ec13 (diff) | |
download | gsoc2013-evolution-9cbd7884b2c831ebfcd51391829b53f1986ab7b3.tar.gz gsoc2013-evolution-9cbd7884b2c831ebfcd51391829b53f1986ab7b3.tar.zst gsoc2013-evolution-9cbd7884b2c831ebfcd51391829b53f1986ab7b3.zip |
Bug 624235 - CamelPOP3Store missing some methods
CamelPOP3Store's get_folder_info() now sets CAMEL_STORE_ERROR_NO_FOLDER
since it has no folder hierarchy to scan. This catches and clears that
error so it doesn't reach the user.
-rw-r--r-- | mail/em-folder-tree.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index e9c39d5a0c..ce674f2309 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -193,6 +193,13 @@ folder_tree_get_folder_info__exec (struct _EMFolderTreeGetFolderInfo *m) m->fi = camel_store_get_folder_info ( m->store, m->top, flags, &m->base.error); + + /* XXX POP3 stores always return an error because they have + * no folder hierarchy to scan. Clear that error so the + * user doesn't see it. */ + if (g_error_matches (m->base.error, + CAMEL_STORE_ERROR, CAMEL_STORE_ERROR_NO_FOLDER)) + g_clear_error (&m->base.error); } static void |