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

推荐订阅源

博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
罗磊的独立博客
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
B
Blog RSS Feed

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): keep streamed text when tts arrives (#8282...
joshavant · 2026-05-17 · via Recent Commits to openclaw:main

@@ -268,6 +268,16 @@ function isCaptionTooLong(err: unknown): boolean {

268268

return CAPTION_TOO_LONG_RE.test(formatErrorMessage(err));

269269

}

270270271+

function resolveVoiceFallbackText(reply: ReplyPayload): string | undefined {

272+

if (reply.text?.trim()) {

273+

return reply.text;

274+

}

275+

if (reply.spokenText?.trim()) {

276+

return reply.spokenText;

277+

}

278+

return undefined;

279+

}

280+271281

async function sendTelegramVoiceFallbackText(opts: {

272282

bot: Bot;

273283

chatId: string;

@@ -337,8 +347,9 @@ async function deliverMediaReply(params: {

337347

replyToId?: number;

338348

replyToMode: ReplyToMode;

339349

progress: DeliveryProgress;

340-

}): Promise<number | undefined> {

350+

}): Promise<{ firstDeliveredMessageId?: number; visibleFallbackText?: string }> {

341351

let firstDeliveredMessageId: number | undefined;

352+

let visibleFallbackText: string | undefined;

342353

let first = true;

343354

let pendingFollowUpText: string | undefined;

344355

for (const mediaUrl of params.mediaList) {

@@ -456,7 +467,7 @@ async function deliverMediaReply(params: {

456467

await sendVoiceMedia(mediaParams, (err) => !isVoiceMessagesForbidden(err));

457468

} catch (voiceErr) {

458469

if (isVoiceMessagesForbidden(voiceErr)) {

459-

const fallbackText = params.reply.text;

470+

const fallbackText = resolveVoiceFallbackText(params.reply);

460471

if (!fallbackText || !fallbackText.trim()) {

461472

throw voiceErr;

462473

}

@@ -487,6 +498,7 @@ async function deliverMediaReply(params: {

487498

if (firstDeliveredMessageId == null) {

488499

firstDeliveredMessageId = fallbackMessageId;

489500

}

501+

visibleFallbackText = fallbackText;

490502

markReplyApplied(params.progress, voiceFallbackReplyTo);

491503

markDelivered(params.progress);

492504

continue;

@@ -499,7 +511,7 @@ async function deliverMediaReply(params: {

499511

delete noCaptionParams.caption;

500512

delete noCaptionParams.parse_mode;

501513

await sendVoiceMedia(noCaptionParams);

502-

const fallbackText = params.reply.text;

514+

const fallbackText = resolveVoiceFallbackText(params.reply);

503515

if (fallbackText?.trim()) {

504516

await sendTelegramVoiceFallbackText({

505517

bot: params.bot,

@@ -513,6 +525,7 @@ async function deliverMediaReply(params: {

513525

silent: params.silent,

514526

replyMarkup: params.replyMarkup,

515527

});

528+

visibleFallbackText = fallbackText;

516529

}

517530

markReplyApplied(params.progress, replyToMessageId);

518531

continue;

@@ -566,7 +579,7 @@ async function deliverMediaReply(params: {

566579

pendingFollowUpText = undefined;

567580

}

568581

}

569-

return firstDeliveredMessageId;

582+

return { firstDeliveredMessageId, visibleFallbackText };

570583

}

571584572585

async function maybePinFirstDeliveredMessage(params: {

@@ -784,6 +797,11 @@ export async function deliverReplies(params: {

784797

}

785798786799

const rawContent = resolvedReplyText;

800+

const spokenHookContent =

801+

!rawContent && reply.audioAsVoice === true && reply.spokenText?.trim()

802+

? reply.spokenText

803+

: undefined;

804+

const hookContent = spokenHookContent ?? rawContent;

787805

const replyToId =

788806

params.replyToMode === "off" ? undefined : resolveTelegramReplyId(reply.replyToId);

789807

const replyQuote = resolveReplyQuoteForSend({

@@ -798,7 +816,7 @@ export async function deliverReplies(params: {

798816

const hookResult = await hookRunner?.runMessageSending(

799817

{

800818

to: params.chatId,

801-

content: rawContent,

819+

content: hookContent,

802820

replyToId,

803821

threadId: params.thread?.id,

804822

metadata: {

@@ -816,12 +834,15 @@ export async function deliverReplies(params: {

816834

if (hookResult?.cancel) {

817835

continue;

818836

}

819-

if (typeof hookResult?.content === "string" && hookResult.content !== rawContent) {

820-

reply = { ...reply, text: hookResult.content };

837+

if (typeof hookResult?.content === "string" && hookResult.content !== hookContent) {

838+

reply = spokenHookContent

839+

? { ...reply, spokenText: hookResult.content }

840+

: { ...reply, text: hookResult.content };

821841

}

822842

}

823843824-

const contentForSentHook = reply.text || "";

844+

let contentForSentHook =

845+

reply.text || (reply.audioAsVoice === true ? resolveVoiceFallbackText(reply) : "") || "";

825846826847

try {

827848

const deliveredCountBeforeReply = progress.deliveredCount;

@@ -853,7 +874,7 @@ export async function deliverReplies(params: {

853874

progress,

854875

});

855876

} else {

856-

firstDeliveredMessageId = await deliverMediaReply({

877+

const mediaDelivery = await deliverMediaReply({

857878

reply,

858879

mediaList,

859880

bot: params.bot,

@@ -876,6 +897,10 @@ export async function deliverReplies(params: {

876897

replyToMode: params.replyToMode,

877898

progress,

878899

});

900+

firstDeliveredMessageId = mediaDelivery.firstDeliveredMessageId;

901+

if (mediaDelivery.visibleFallbackText) {

902+

contentForSentHook = mediaDelivery.visibleFallbackText;

903+

}

879904

}

880905

await maybePinFirstDeliveredMessage({

881906

pin: reply.delivery?.pin,