diff --git a/src/mail_menu.c b/src/mail_menu.c index aae289e..41a85a6 100644 --- a/src/mail_menu.c +++ b/src/mail_menu.c @@ -3152,7 +3152,7 @@ void do_mail_scan(struct user_record *user, int oldscan, int personal) { unread_count = 0; for (k=msghs->msg_count-1;k>=0;k--) { - if (msghs->msgs[k]->msg_no <= jlr.HighReadMsg) { + if (msghs->msgs[k]->msg_no < jlr.HighReadMsg) { break; } unread_count++; @@ -3207,7 +3207,7 @@ void do_mail_scan(struct user_record *user, int oldscan, int personal) { unread_count = 0; for (k=msghs->msg_count-1;k>=0;k--) { - if (msghs->msgs[k]->msg_no <= jlr.HighReadMsg) { + if (msghs->msgs[k]->msg_no < jlr.HighReadMsg) { break; } unread_count++;