From a25924c84bb5925be41ac947cb89aaa3860dc959 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 22 Nov 2021 19:54:10 +0200 Subject: [PATCH] fsdfsd --- files/helpers/alerts.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/helpers/alerts.py b/files/helpers/alerts.py index 0b810f717..bccde6608 100644 --- a/files/helpers/alerts.py +++ b/files/helpers/alerts.py @@ -14,10 +14,10 @@ def send_notification(uid, text, autojanny=False): text_html = sanitize(text_html) 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: abort(403) + 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: abort(403) new_comment = Comment(author_id=author_id, parent_submission=None,