don't display topics without any replies

This commit is contained in:
chiptune 2023-11-19 01:14:13 -06:00
parent b4c3db9d87
commit 33624a237c
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class Messages:
unread_reply_count += 1
reply_count += 1
if reply_count == 0 or unread_reply_count > 0:
if unread_reply_count > 0:
topic["unread"] = unread_reply_count
output.append(topic)