forked from rDrama/rDrama
1
0
Fork 0

fix modmail replies not generating notifs and unread modmail replies being collapsed and not being highlighted

master
Aevann 2023-04-25 13:48:25 +02:00
parent e464d98580
commit 507924b8a3
1 changed files with 2 additions and 4 deletions

View File

@ -651,11 +651,9 @@ def messagereply(v:User):
notif = Notification(comment_id=c.id, user_id=admin)
g.db.add(notif)
ids = [top_comment.id] + [x.id for x in top_comment.replies(sort="old", v=v)]
notifications = g.db.query(Notification).filter(Notification.comment_id.in_(ids), Notification.user_id.in_(admins))
for n in notifications:
g.db.delete(n)
#I removed deleting previous notifs, cuz it interferred with the "unread" attribute for comments, in turn causing modmail replies u didnt read to be collapsed, which is annoying
#Also its position here meant all notifs generated now got deleted lol, this can be fixed by moving it to before the new notif is made, but it doesn't fix the issue in the previous comment
return {"comment": render_template("comments.html", v=v, comments=[c])}