From a6a9f954c71c53eab54dc83ad4dd28571084345b Mon Sep 17 00:00:00 2001 From: harold Date: Tue, 17 Jun 2025 16:04:41 +0500 Subject: [PATCH] increase message chang size --- telegram-application/src/core/tg_service/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram-application/src/core/tg_service/constants.py b/telegram-application/src/core/tg_service/constants.py index ba6b0d6..31dc6be 100644 --- a/telegram-application/src/core/tg_service/constants.py +++ b/telegram-application/src/core/tg_service/constants.py @@ -3,7 +3,7 @@ from enum import Enum from telethon.types import Message, User, Chat, Channel -MESSAGE_CHANG_SIZE: int = 5 +MESSAGE_CHANG_SIZE: int = 30 TELETHON_CHAT_TYPES = User | Chat | Channel