From c697d3ea341efd4ea783e32560e269e1f2160a98 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 24 Feb 2023 04:43:26 +0200 Subject: [PATCH] change notif title to be clearer --- files/routes/comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/comments.py b/files/routes/comments.py index 4a0646085..9a0c5a51f 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -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)}