This commit is contained in:
Aevann1 2021-12-17 20:10:22 +02:00
parent 2d8f871d51
commit 31fe4f857a
2 changed files with 19 additions and 10 deletions

View file

@ -13,13 +13,11 @@ def send_notification(uid, text, autojanny=False):
text_html = CustomRenderer().render(mistletoe.Document(text))
text_html = sanitize(text_html)
author_id = AUTOJANNY_ID
# if autojanny: author_id = AUTOJANNY_ID
# else:
# author_id = NOTIFICATIONS_ID
# existing = g.db.query(Comment.id).filter(Comment.author_id == author_id, Comment.body_html == text_html, Comment.notifiedto == uid).first()
# if existing: return
if autojanny: author_id = AUTOJANNY_ID
else:
author_id = NOTIFICATIONS_ID
existing = g.db.query(Comment.id).filter(Comment.author_id == author_id, Comment.body_html == text_html, Comment.notifiedto == uid).first()
if existing: return
new_comment = Comment(author_id=author_id,
parent_submission=None,
@ -31,8 +29,7 @@ def send_notification(uid, text, autojanny=False):
g.db.flush()
notif = Notification(comment_id=new_comment.id,
user_id=uid)
notif = Notification(comment_id=new_comment.id, user_id=uid)
g.db.add(notif)