forked from rDrama/rDrama
1
0
Fork 0

change notif title to be clearer

master
Aevann 2023-02-24 04:43:26 +02:00
parent cb73c7c681
commit c697d3ea34
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ def edit_comment(cid, v):
n = Notification(comment_id=c.id, user_id=x)
g.db.add(n)
if not v.shadowbanned:
push_notif({x}, f'New mention by @{v.username}', c.body, (c.id,bool(c.wall_user_id)))
push_notif({x}, f'New mention of you by @{v.username}', c.body, (c.id,bool(c.wall_user_id)))
g.db.commit()
return {"body": c.body, "comment": c.realbody(v)}