From bb5ea1d62113ecb84e27e5644a6a1d990d4ee61f Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 24 May 2024 05:16:39 +0300 Subject: [PATCH] put id in there --- files/routes/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/chat.py b/files/routes/chat.py index fe309c56f..59bb81778 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -180,7 +180,7 @@ def speak(data, v): uids = set(x.user_id for x in memberships) title = f'New mention of you in "{chat.name}"' body = chat_message.text - url = f'{SITE_FULL}/chat/{chat.id}' + url = f'{SITE_FULL}/chat/{chat.id}#{chat_message.id}' push_notif(uids, title, body, url)