This commit is contained in:
Aevann1 2021-11-22 19:54:10 +02:00
parent 8a5576e1f2
commit 06afa63d88

View file

@ -14,10 +14,10 @@ def send_notification(uid, text, autojanny=False):
text_html = sanitize(text_html) text_html = sanitize(text_html)
if autojanny: author_id = AUTOJANNY_ID if autojanny: author_id = AUTOJANNY_ID
else: author_id = NOTIFICATIONS_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() existing = g.db.query(Comment.id).filter(Comment.author_id == author_id, Comment.body_html == text_html, Comment.notifiedto == uid).first()
if existing: abort(403) if existing: abort(403)
new_comment = Comment(author_id=author_id, new_comment = Comment(author_id=author_id,
parent_submission=None, parent_submission=None,