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

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
博客园_首页
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
博客园 - 司徒正美
有赞技术团队
有赞技术团队
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
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): deduplicate MEDIA attachments in non-strea...
rogerdigital · 2026-05-10 · via Recent Commits to openclaw:main

@@ -57,6 +57,7 @@ import {

5757

resolveAgentDir,

5858

resolveDefaultModelForAgent,

5959

} from "./bot-message-dispatch.agent.runtime.js";

60+

import { deduplicateBlockSentMedia } from "./bot-message-dispatch.media-dedup.js";

6061

import { pruneStickerMediaFromContext } from "./bot-message-dispatch.media.js";

6162

import {

6263

generateTopicLabel,

@@ -1164,8 +1165,14 @@ export const dispatchTelegramMessage = async ({

11641165

ctxPayload,

11651166

recordInboundSession: context.turn.recordInboundSession,

11661167

record: context.turn.record,

1167-

runDispatch: () =>

1168-

telegramDeps.dispatchReplyWithBufferedBlockDispatcher({

1168+

runDispatch: () => {

1169+

// Track media URLs delivered via block replies so final replies

1170+

// can skip duplicates. Without this, non-streaming Telegram

1171+

// delivers each MEDIA: attachment twice — once from the

1172+

// media-only block reply and once from the final reply.

1173+

const sentBlockMediaUrls = new Set<string>();

1174+1175+

return telegramDeps.dispatchReplyWithBufferedBlockDispatcher({

11691176

ctx: ctxPayload,

11701177

cfg,

11711178

dispatcherOptions: {

@@ -1178,6 +1185,25 @@ export const dispatchTelegramMessage = async ({

11781185

if (payload.isError === true) {

11791186

hadErrorReplyFailureOrSkip = true;

11801187

}

1188+1189+

// Track media URLs from block replies so final replies

1190+

// can skip duplicates (non-streaming MEDIA: dedup).

1191+

if (info.kind === "block" && payload.mediaUrls?.length) {

1192+

for (const url of payload.mediaUrls) {

1193+

sentBlockMediaUrls.add(url);

1194+

}

1195+

}

1196+1197+

// Filter out media already sent via block reply.

1198+

const deduped =

1199+

info.kind === "final"

1200+

? deduplicateBlockSentMedia(payload, sentBlockMediaUrls)

1201+

: payload;

1202+

if (deduped === undefined) {

1203+

return;

1204+

}

1205+

const effectivePayload = deduped;

1206+11811207

if (info.kind === "final") {

11821208

await enqueueDraftLaneEvent(async () => {});

11831209

}

@@ -1192,16 +1218,16 @@ export const dispatchTelegramMessage = async ({

11921218

return;

11931219

}

11941220

const telegramButtons = (

1195-

payload.channelData?.telegram as

1221+

effectivePayload.channelData?.telegram as

11961222

| { buttons?: TelegramInlineButtons }

11971223

| undefined

11981224

)?.buttons;

11991225

const split = splitTextIntoLaneSegments(

1200-

{ text: payload.text },

1226+

{ text: effectivePayload.text },

12011227

payload.isReasoning,

12021228

);

12031229

const segments = split.segments;

1204-

const reply = resolveSendableOutboundReplyParts(payload);

1230+

const reply = resolveSendableOutboundReplyParts(effectivePayload);

12051231

const _hasMedia = reply.hasMedia;

1206123212071233

const flushBufferedFinalAnswer = async () => {

@@ -1232,7 +1258,7 @@ export const dispatchTelegramMessage = async ({

12321258

reasoningStepState.shouldBufferFinalAnswer()

12331259

) {

12341260

reasoningStepState.bufferFinalAnswer({

1235-

payload,

1261+

payload: effectivePayload,

12361262

text: segment.update.text,

12371263

bufferedGeneration: replyFenceGeneration,

12381264

});

@@ -1245,11 +1271,14 @@ export const dispatchTelegramMessage = async ({

12451271

streamMode === "progress" &&

12461272

segment.lane === "answer" &&

12471273

info.kind === "final"

1248-

? await deliverProgressModeFinalAnswer(payload, segment.update.text)

1274+

? await deliverProgressModeFinalAnswer(

1275+

effectivePayload,

1276+

segment.update.text,

1277+

)

12491278

: await deliverLaneText({

12501279

laneName: segment.lane,

12511280

text: segment.update.text,

1252-

payload,

1281+

payload: effectivePayload,

12531282

infoKind: info.kind,

12541283

buttons: telegramButtons,

12551284

});

@@ -1273,7 +1302,9 @@ export const dispatchTelegramMessage = async ({

12731302

if (split.suppressedReasoningOnly) {

12741303

if (reply.hasMedia) {

12751304

const payloadWithoutSuppressedReasoning =

1276-

typeof payload.text === "string" ? { ...payload, text: "" } : payload;

1305+

typeof effectivePayload.text === "string"

1306+

? { ...effectivePayload, text: "" }

1307+

: effectivePayload;

12771308

await sendPayload(payloadWithoutSuppressedReasoning, {

12781309

durable: info.kind === "final",

12791310

});

@@ -1296,7 +1327,7 @@ export const dispatchTelegramMessage = async ({

12961327

}

12971328

return;

12981329

}

1299-

await sendPayload(payload, { durable: info.kind === "final" });

1330+

await sendPayload(effectivePayload, { durable: info.kind === "final" });

13001331

if (info.kind === "final") {

13011332

await flushBufferedFinalAnswer();

13021333

}

@@ -1488,7 +1519,8 @@ export const dispatchTelegramMessage = async ({

14881519

: undefined,

14891520

onModelSelected,

14901521

},

1491-

}),

1522+

});

1523+

},

14921524

}),

14931525

},

14941526

});