forked from rDrama/rDrama
1
0
Fork 0

fix parent-level modmails not appearing

master
Aevann 2024-02-01 22:44:16 +02:00
parent 6b04686a6b
commit e4a000ab21
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ def notifications_messages(v):
def notifications_modmail(v):
page = get_page()
sq = g.db.query(Comment.top_comment_id, Comment.created_utc).distinct(Comment.top_comment_id).filter_by(sentto=MODMAIL_ID, level=2).order_by(Comment.top_comment_id, Comment.created_utc.desc()).subquery()
sq = g.db.query(Comment.top_comment_id, Comment.created_utc).distinct(Comment.top_comment_id).filter_by(sentto=MODMAIL_ID).order_by(Comment.top_comment_id, Comment.created_utc.desc()).subquery()
comments = g.db.query(Comment).filter(Comment.id == sq.c.top_comment_id).order_by(sq.c.created_utc.desc())