惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园 - Franky
罗磊的独立博客
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
V
V2EX
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
U
Unit 42
GbyAI
GbyAI
A
About on SuperTechFans
WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
D
DataBreaches.Net
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(telegram): support media message edits · openclaw/ope...
TurboTheTurt · 2026-05-31 · via Recent Commits to openclaw:main

@@ -67,6 +67,7 @@ export type TelegramApiOverride = Partial<TelegramApi>;

6767

type TelegramSendMessageParams = Parameters<TelegramApi["sendMessage"]>[2];

6868

type TelegramSendPollParams = Parameters<TelegramApi["sendPoll"]>[3];

6969

type TelegramEditMessageTextParams = Parameters<TelegramApi["editMessageText"]>[3];

70+

type TelegramEditMessageCaptionParams = Parameters<TelegramApi["editMessageCaption"]>[2];

7071

type TelegramCreateForumTopicParams = NonNullable<Parameters<TelegramApi["createForumTopic"]>[2]>;

7172

type TelegramThreadScopedParams = {

7273

message_thread_id?: number;

@@ -230,6 +231,7 @@ function logTelegramOutboundSendOk(params: TelegramOutboundSuccessLogParams): vo

230231

const PARSE_ERR_RE = /can't parse entities|parse entities|find end of the entity/i;

231232

const MESSAGE_NOT_MODIFIED_RE =

232233

/400:\s*Bad Request:\s*message is not modified|MESSAGE_NOT_MODIFIED/i;

234+

const MESSAGE_HAS_NO_TEXT_RE = /400:\s*Bad Request:\s*there is no text in the message to edit/i;

233235

const MESSAGE_DELETE_NOOP_RE =

234236

/message to delete not found|message can't be deleted|MESSAGE_ID_INVALID|MESSAGE_DELETE_FORBIDDEN/i;

235237

const CHAT_NOT_FOUND_RE = /400: Bad Request: chat not found/i;

@@ -422,6 +424,10 @@ function isTelegramMessageNotModifiedError(err: unknown): boolean {

422424

return MESSAGE_NOT_MODIFIED_RE.test(formatErrorMessage(err));

423425

}

424426427+

function isTelegramMessageHasNoTextError(err: unknown): boolean {

428+

return MESSAGE_HAS_NO_TEXT_RE.test(formatErrorMessage(err));

429+

}

430+425431

function isTelegramMessageDeleteNoopError(err: unknown): boolean {

426432

return MESSAGE_DELETE_NOOP_RE.test(formatErrorMessage(err));

427433

}

@@ -1316,6 +1322,8 @@ type TelegramEditOpts = {

13161322

linkPreview?: boolean;

13171323

/** Inline keyboard buttons (reply markup). Pass empty array to remove buttons. */

13181324

buttons?: TelegramInlineButtons;

1325+

/** Use Telegram's media-caption edit endpoint, or fall back to it when text edits target media. */

1326+

editMode?: "text" | "caption" | "auto";

13191327

/** Resolved runtime config from the command or gateway boundary. */

13201328

cfg: OpenClawConfig;

13211329

};

@@ -1429,43 +1437,90 @@ export async function editMessageTelegram(

14291437

const builtKeyboard = shouldTouchButtons ? buildInlineKeyboard(opts.buttons) : undefined;

14301438

const replyMarkup = shouldTouchButtons ? (builtKeyboard ?? { inline_keyboard: [] }) : undefined;

143114391432-

const editParams: TelegramEditMessageTextParams = {

1440+

const textEditParams: TelegramEditMessageTextParams = {

14331441

parse_mode: "HTML",

14341442

};

14351443

if (opts.linkPreview === false) {

1436-

editParams.link_preview_options = { is_disabled: true };

1444+

textEditParams.link_preview_options = { is_disabled: true };

14371445

}

14381446

if (replyMarkup !== undefined) {

1439-

editParams.reply_markup = replyMarkup;

1447+

textEditParams.reply_markup = replyMarkup;

14401448

}

1441-

const plainParams: TelegramEditMessageTextParams = {};

1449+

const plainTextParams: TelegramEditMessageTextParams = {};

14421450

if (opts.linkPreview === false) {

1443-

plainParams.link_preview_options = { is_disabled: true };

1451+

plainTextParams.link_preview_options = { is_disabled: true };

1452+

}

1453+

if (replyMarkup !== undefined) {

1454+

plainTextParams.reply_markup = replyMarkup;

14441455

}

1456+

const captionEditParams: TelegramEditMessageCaptionParams = {

1457+

caption: htmlText,

1458+

parse_mode: "HTML",

1459+

};

14451460

if (replyMarkup !== undefined) {

1446-

plainParams.reply_markup = replyMarkup;

1461+

captionEditParams.reply_markup = replyMarkup;

1462+

}

1463+

const plainCaptionParams: TelegramEditMessageCaptionParams = {

1464+

caption: plainText,

1465+

};

1466+

if (replyMarkup !== undefined) {

1467+

plainCaptionParams.reply_markup = replyMarkup;

14471468

}

144814691449-

try {

1450-

await withTelegramHtmlParseFallback({

1470+

const performTextEdit = () =>

1471+

withTelegramHtmlParseFallback({

14511472

label: "editMessage",

14521473

verbose: opts.verbose,

14531474

requestHtml: (retryLabel) =>

14541475

requestWithEditShouldLog(

1455-

() => api.editMessageText(chatId, messageId, htmlText, editParams),

1476+

() => api.editMessageText(chatId, messageId, htmlText, textEditParams),

14561477

retryLabel,

14571478

(err) => !isTelegramMessageNotModifiedError(err),

14581479

),

14591480

requestPlain: (retryLabel) =>

14601481

requestWithEditShouldLog(

14611482

() =>

1462-

Object.keys(plainParams).length > 0

1463-

? api.editMessageText(chatId, messageId, plainText, plainParams)

1483+

Object.keys(plainTextParams).length > 0

1484+

? api.editMessageText(chatId, messageId, plainText, plainTextParams)

14641485

: api.editMessageText(chatId, messageId, plainText),

14651486

retryLabel,

14661487

(plainErr) => !isTelegramMessageNotModifiedError(plainErr),

14671488

),

14681489

});

1490+1491+

const performCaptionEdit = () =>

1492+

withTelegramHtmlParseFallback({

1493+

label: "editMessageCaption",

1494+

verbose: opts.verbose,

1495+

requestHtml: (retryLabel) =>

1496+

requestWithEditShouldLog(

1497+

() => api.editMessageCaption(chatId, messageId, captionEditParams),

1498+

retryLabel,

1499+

(err) => !isTelegramMessageNotModifiedError(err),

1500+

),

1501+

requestPlain: (retryLabel) =>

1502+

requestWithEditShouldLog(

1503+

() => api.editMessageCaption(chatId, messageId, plainCaptionParams),

1504+

retryLabel,

1505+

(plainErr) => !isTelegramMessageNotModifiedError(plainErr),

1506+

),

1507+

});

1508+1509+

try {

1510+

const editMode = opts.editMode ?? "text";

1511+

if (editMode === "caption") {

1512+

await performCaptionEdit();

1513+

} else {

1514+

try {

1515+

await performTextEdit();

1516+

} catch (err) {

1517+

if (editMode === "auto" && isTelegramMessageHasNoTextError(err)) {

1518+

await performCaptionEdit();

1519+

} else {

1520+

throw err;

1521+

}

1522+

}

1523+

}

14691524

} catch (err) {

14701525

if (isTelegramMessageNotModifiedError(err)) {

14711526

// no-op: Telegram reports message content unchanged, treat as success