From e3e7c4a8b68f7200c7dcc2a22d7230ef1c5cfedf Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 23 Jun 2023 20:44:02 +0300 Subject: [PATCH] fix wrong longpostbot comment count --- files/helpers/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/actions.py b/files/helpers/actions.py index c47104797..47d3de343 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -360,7 +360,7 @@ def execute_longpostbot(c:Comment, level:int, body, body_html, post_target:post_ g.db.add(n) if posting_to_post: - post_target.comment_count += 3 + post_target.comment_count += 1 g.db.add(post_target) push_notif({v.id}, f'New reply by @{c2.author_name}', c2.body, c2)