show modmail notifs per chain

pull/222/head
Aevann 2024-02-01 18:00:09 +02:00
parent fa26f516ee
commit 03f7322725
1 changed files with 1 additions and 1 deletions

View File

@ -785,7 +785,7 @@ class User(Base):
def modmail_notifications_count(self):
if self.admin_level < PERMS['NOTIFICATIONS_MODMAIL']:
return 0
return g.db.query(Comment).filter(
return g.db.query(Comment).distinct(Comment.top_comment_id).filter(
Comment.author_id != self.id,
Comment.sentto == MODMAIL_ID,
Comment.created_utc > self.last_viewed_modmail_notifs,