diff --git a/files/helpers/actions.py b/files/helpers/actions.py index 50956f73f..013b4a849 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -347,7 +347,7 @@ def execute_antispam_submission_check(title, v, url): user_id=AUTOJANNY_ID, target_submission_id=post.id, kind="ban_post", - _note="spam" + _note="Spam" ) g.db.add(ma) return False @@ -403,7 +403,7 @@ def execute_antispam_comment_check(body:str, v:User): user_id=AUTOJANNY_ID, target_comment_id=comment.id, kind="ban_comment", - _note="spam" + _note="Spam" ) g.db.add(ma) g.db.commit()