make link posts look visited when u visit them from notifs

pull/161/head
Aevann 2023-06-30 01:00:05 +03:00
parent 8c7292e8f3
commit b2ac0efc8c
1 changed files with 2 additions and 2 deletions

View File

@ -92,9 +92,9 @@ def notif_comment(text):
def notif_comment2(p):
text = f"@{p.author_name} has mentioned you: [{p.title}](/post/{p.id})"
text = f"@{p.author_name} has mentioned you: [{p.title}]({p.shortlink})"
search_html = f'%</a> has mentioned you: <a href="/post/{p.id}"%'
search_html = f'%</a> has mentioned you: <a href="/post/{p.id}/%'
existing = g.db.query(Comment.id).filter(Comment.author_id == AUTOJANNY_ID, Comment.parent_post == None, Comment.body_html.like(search_html)).first()