From 025f73c3f5fbf06192bbd01daf7fa9e2d7c3bf0b Mon Sep 17 00:00:00 2001 From: Muhammed Mukhthar CM Date: Sat, 3 Jan 2026 05:49:44 +0000 Subject: [PATCH] fix(telegram): add textLimit to block reply chunking Block streaming replies were missing the textLimit parameter in deliverReplies(), causing long messages to fail with 'message is too long' error instead of being chunked properly. The final reply path already included textLimit, but the onBlockReply callback path did not. --- src/telegram/bot.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/telegram/bot.ts b/src/telegram/bot.ts index c5fbb6bc8..38e598ef8 100644 --- a/src/telegram/bot.ts +++ b/src/telegram/bot.ts @@ -217,6 +217,7 @@ export function createTelegramBot(opts: TelegramBotOptions) { runtime, bot, replyToMode, + textLimit, }); }) .catch((err) => {