From 6f7cbb7b1cacec1aa768a1910b5fc949d7f4df29 Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Sun, 21 Aug 2016 09:48:24 +1000 Subject: [PATCH] Another fix for last read --- www_msgs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www_msgs.c b/www_msgs.c index d0b1920..b971b2e 100644 --- a/www_msgs.c +++ b/www_msgs.c @@ -41,7 +41,7 @@ static int new_messages(struct user_record *user, int conference, int area) { count = jbh.ActiveMsgs; } } else { - if (jlr.HighReadMsg < (jbh.ActiveMsgs - 1)) { + if (jlr.HighReadMsg < jbh.ActiveMsgs) { if (conf.mail_conferences[conference]->mail_areas[area]->type == TYPE_NETMAIL_AREA) { msghs = read_message_headers(conference, area, user); if (msghs != NULL) {