Revert "try fixing ghost modmail notifs"

This reverts commit 05a56ac429.
pull/222/head
Aevann 2024-02-01 22:34:03 +02:00
parent 05a56ac429
commit 3e7e2769c4
1 changed files with 2 additions and 2 deletions

View File

@ -785,11 +785,11 @@ class User(Base):
def modmail_notifications_count(self):
if self.admin_level < PERMS['NOTIFICATIONS_MODMAIL']:
return 0
return g.db.query(Comment.top_comment_id).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,
).group_by(Comment.top_comment_id).count()
).count()
@property
@lazy