From 0205627e26ba10a54db100fbe595b07e5d93cd6c Mon Sep 17 00:00:00 2001 From: Krzysztof Rudnicki Date: Sat, 5 Oct 2024 10:12:37 +0200 Subject: [PATCH] fix: remove automatic message count whenever something gets send to group --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index a55a2ef..801c012 100644 --- a/main.py +++ b/main.py @@ -181,7 +181,6 @@ async def trigger_command(message_content, recipient): async def send_to_group(message_content, counter, message): if message_group_id(message_content) == GROUP_ID: - await count_messages(json.loads(message).get('envelope', {}), counter) await trigger_command(message_content, GROUP_ID_SEND) async def remove_attachment(attachment_id):