diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-subscribe-editor.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 59a144e955..bbffaac3ed 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-02-06 Jeffrey Stedfast <fejj@ximian.com> + + * em-subscribe-editor.c (sub_folderinfo_get): Set the NO_VIRTUAL + flag bit for get_folder_info(). Fixes bug #51887. + 2004-02-06 Radek Doulik <rodo@ximian.com> * em-folder-view.c (emfv_popup_mark_nojunk): move to the next diff --git a/mail/em-subscribe-editor.c b/mail/em-subscribe-editor.c index 3dc772abba..dc7105b52b 100644 --- a/mail/em-subscribe-editor.c +++ b/mail/em-subscribe-editor.c @@ -339,7 +339,7 @@ sub_folderinfo_get (struct _mail_msg *mm) struct _emse_folderinfo_msg *m = (struct _emse_folderinfo_msg *) mm; camel_operation_register(mm->cancel); - m->info = camel_store_get_folder_info (m->sub->store, m->node?m->node->info->full_name:"", CAMEL_STORE_FOLDER_INFO_FAST, &mm->ex); + m->info = camel_store_get_folder_info (m->sub->store, m->node?m->node->info->full_name:"", CAMEL_STORE_FOLDER_INFO_FAST | CAMEL_STORE_FOLDER_INFO_NO_VIRTUAL, &mm->ex); camel_operation_unregister(mm->cancel); } |