diff options
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/mail-send-recv.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index c40938e3d2..d5b0d845d4 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,9 @@ 2004-04-29 Not Zed <NotZed@Ximian.com> + * mail-send-recv.c (receive_update_got_store): call + mail_note_store rather than get_folder_info so that unread counts + are propagated to the ui too. + * mail-errors.xml.in: fix the password dialogue text. 2004-04-28 Jeffrey Stedfast <fejj@ximian.com> diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index a27ca71da5..09c1605a9e 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -700,7 +700,7 @@ receive_update_got_store (char *uri, CamelStore *store, void *data) struct _send_info *info = data; if (store) { - mail_get_folderinfo (store, info->cancel, receive_update_got_folderinfo, info); + mail_note_store(store, info->cancel, receive_update_got_folderinfo, info); } else { receive_done ("", info); } |