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

推荐订阅源

L
LangChain Blog
V
V2EX
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
小众软件
小众软件
Vercel News
Vercel News
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
V
Visual Studio Blog
J
Java Code Geeks
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog
B
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 message-tool-only telegram fallback (#76272) · opencl...
thats2easyyy · 2026-05-03 · via Recent Commits to openclaw:main

@@ -754,6 +754,12 @@ export async function dispatchReplyFromConfig(

754754

suppressHookUserDelivery,

755755

suppressHookReplyLifecycle,

756756

} = sourceReplyPolicy;

757+

const attachSourceReplyDeliveryMode = (

758+

result: DispatchFromConfigResult,

759+

): DispatchFromConfigResult =>

760+

sourceReplyDeliveryMode === "message_tool_only"

761+

? { ...result, sourceReplyDeliveryMode }

762+

: result;

757763758764

let pluginFallbackReason:

759765

| "plugin-bound-fallback-missing-plugin"

@@ -797,7 +803,10 @@ export async function dispatchReplyFromConfig(

797803

markIdle("plugin_binding_dispatch");

798804

recordProcessed("completed", { reason: "plugin-bound-handled" });

799805

commitInboundDedupeIfClaimed();

800-

return { queuedFinal: false, counts: dispatcher.getQueuedCounts() };

806+

return attachSourceReplyDeliveryMode({

807+

queuedFinal: false,

808+

counts: dispatcher.getQueuedCounts(),

809+

});

801810

}

802811

case "missing_plugin":

803812

case "no_handler": {

@@ -824,7 +833,10 @@ export async function dispatchReplyFromConfig(

824833

markIdle("plugin_binding_declined");

825834

recordProcessed("completed", { reason: "plugin-bound-declined" });

826835

commitInboundDedupeIfClaimed();

827-

return { queuedFinal: false, counts: dispatcher.getQueuedCounts() };

836+

return attachSourceReplyDeliveryMode({

837+

queuedFinal: false,

838+

counts: dispatcher.getQueuedCounts(),

839+

});

828840

}

829841

case "error": {

830842

logVerbose(

@@ -837,7 +849,10 @@ export async function dispatchReplyFromConfig(

837849

markIdle("plugin_binding_error");

838850

recordProcessed("completed", { reason: "plugin-bound-error" });

839851

commitInboundDedupeIfClaimed();

840-

return { queuedFinal: false, counts: dispatcher.getQueuedCounts() };

852+

return attachSourceReplyDeliveryMode({

853+

queuedFinal: false,

854+

counts: dispatcher.getQueuedCounts(),

855+

});

841856

}

842857

}

843858

}

@@ -910,7 +925,7 @@ export async function dispatchReplyFromConfig(

910925

recordProcessed("completed", { reason: "fast_abort" });

911926

markIdle("message_completed");

912927

commitInboundDedupeIfClaimed();

913-

return { queuedFinal, counts };

928+

return attachSourceReplyDeliveryMode({ queuedFinal, counts });

914929

}

915930916931

const isSlackNonDirectSurface =

@@ -989,7 +1004,7 @@ export async function dispatchReplyFromConfig(

9891004

recordProcessed("completed", { reason: "before_dispatch_handled" });

9901005

markIdle("message_completed");

9911006

commitInboundDedupeIfClaimed();

992-

return { queuedFinal, counts };

1007+

return attachSourceReplyDeliveryMode({ queuedFinal, counts });

9931008

}

9941009

}

9951010

@@ -1023,10 +1038,10 @@ export async function dispatchReplyFromConfig(

10231038

);

10241039

if (replyDispatchResult?.handled) {

10251040

commitInboundDedupeIfClaimed();

1026-

return {

1041+

return attachSourceReplyDeliveryMode({

10271042

queuedFinal: replyDispatchResult.queuedFinal,

10281043

counts: replyDispatchResult.counts,

1029-

};

1044+

});

10301045

}

10311046

}

10321047

@@ -1443,10 +1458,10 @@ export async function dispatchReplyFromConfig(

14431458

},

14441459

);

14451460

if (tailDispatchResult?.handled) {

1446-

return {

1461+

return attachSourceReplyDeliveryMode({

14471462

queuedFinal: tailDispatchResult.queuedFinal,

14481463

counts: tailDispatchResult.counts,

1449-

};

1464+

});

14501465

}

14511466

}

14521467

}

@@ -1535,7 +1550,7 @@ export async function dispatchReplyFromConfig(

15351550

pluginFallbackReason ? { reason: pluginFallbackReason } : undefined,

15361551

);

15371552

markIdle("message_completed");

1538-

return { queuedFinal, counts };

1553+

return attachSourceReplyDeliveryMode({ queuedFinal, counts });

15391554

} catch (err) {

15401555

if (inboundDedupeClaim.status === "claimed") {

15411556

if (inboundDedupeReplayUnsafe) {