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

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
A
About on SuperTechFans

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): materialize streaming progress placeholder...
snowzlmbot · 2026-06-21 · via Recent Commits to openclaw:main

@@ -178,6 +178,8 @@ export function createTelegramDraftStream(params: {

178178

throttleMs?: number;

179179

/** Minimum chars before sending first message (debounce for push notifications) */

180180

minInitialChars?: number;

181+

/** Maximum time to hold a short first preview before materializing it anyway. */

182+

minInitialDelayMs?: number;

181183

/** Optional preview renderer (e.g. markdown -> HTML + parse mode). */

182184

renderText?: (text: string) => TelegramDraftPreview;

183185

/** Called when a late send resolves after forceNewMessage() switched generations. */

@@ -190,6 +192,7 @@ export function createTelegramDraftStream(params: {

190192

const maxChars = Math.min(params.maxChars ?? transportLimit, transportLimit);

191193

const throttleMs = Math.max(250, params.throttleMs ?? DEFAULT_THROTTLE_MS);

192194

const minInitialChars = params.minInitialChars;

195+

const minInitialDelayMs = params.minInitialDelayMs;

193196

const chatId = params.chatId;

194197

const threadParams = buildTelegramThreadParams(params.thread);

195198

const replyToMessageId = normalizeTelegramReplyToMessageId(params.replyToMessageId);

@@ -224,6 +227,8 @@ export function createTelegramDraftStream(params: {

224227

let lastDeliveredText = "";

225228

let lastRequestedText = "";

226229

let lastRequestedPreview: TelegramDraftPreview | undefined;

230+

let firstShortPreviewSeenMs: number | undefined;

231+

let initialPreviewTimer: ReturnType<typeof setTimeout> | undefined;

227232

let previewRevision = 0;

228233

let generation = 0;

229234

let deliveredTextOffset = 0;

@@ -319,6 +324,26 @@ export function createTelegramDraftStream(params: {

319324

streamVisibleSinceMs = visibleSinceMs;

320325

return true;

321326

};

327+

const clearInitialPreviewTimer = () => {

328+

if (initialPreviewTimer) {

329+

clearTimeout(initialPreviewTimer);

330+

initialPreviewTimer = undefined;

331+

}

332+

};

333+

const scheduleInitialPreviewFlush = (delayMs: number) => {

334+

if (initialPreviewTimer) {

335+

return;

336+

}

337+

initialPreviewTimer = setTimeout(

338+

() => {

339+

initialPreviewTimer = undefined;

340+

void flushInitialPreview().catch((err: unknown) => {

341+

params.warn?.(`telegram stream preview delayed send failed: ${formatErrorMessage(err)}`);

342+

});

343+

},

344+

Math.max(0, delayMs),

345+

);

346+

};

322347

const stopOversizedPreview = (payloadLength: number): false => {

323348

streamState.stopped = true;

324349

params.warn?.(`telegram stream preview stopped (text length ${payloadLength} > ${maxChars})`);

@@ -405,8 +430,24 @@ export function createTelegramDraftStream(params: {

405430406431

if (typeof streamMessageId !== "number" && minInitialChars != null && !streamState.final) {

407432

if (renderedText.length < minInitialChars) {

408-

return false;

433+

if (minInitialDelayMs == null) {

434+

return false;

435+

}

436+

const now = Date.now();

437+

firstShortPreviewSeenMs ??= now;

438+

const remainingDelayMs = minInitialDelayMs - (now - firstShortPreviewSeenMs);

439+

if (remainingDelayMs > 0) {

440+

scheduleInitialPreviewFlush(remainingDelayMs);

441+

return false;

442+

}

443+

clearInitialPreviewTimer();

444+

} else {

445+

firstShortPreviewSeenMs = undefined;

446+

clearInitialPreviewTimer();

409447

}

448+

} else {

449+

firstShortPreviewSeenMs = undefined;

450+

clearInitialPreviewTimer();

410451

}

411452412453

const previousSentPreviewKey = lastSentPreviewKey;

@@ -467,6 +508,7 @@ export function createTelegramDraftStream(params: {

467508

state: streamState,

468509

sendOrEditStreamMessage,

469510

});

511+

const flushInitialPreview = loop.flush;

470512471513

const requestDraftUpdate = (text: string, preview?: TelegramDraftPreview) => {

472514

if (streamState.stopped || streamState.final) {

@@ -513,6 +555,8 @@ export function createTelegramDraftStream(params: {

513555

messageSendAttempted = false;

514556

streamMessageId = undefined;

515557

streamVisibleSinceMs = undefined;

558+

firstShortPreviewSeenMs = undefined;

559+

clearInitialPreviewTimer();

516560

lastSentPreviewKey = "";

517561

if (options?.resetOffset !== false) {

518562

deliveredTextOffset = 0;

@@ -526,6 +570,7 @@ export function createTelegramDraftStream(params: {

526570

};

527571528572

const clear = async () => {

573+

clearInitialPreviewTimer();

529574

const messageId = await takeMessageIdAfterStop({

530575

stopForClear,

531576

readMessageId: () => streamMessageId,

@@ -544,6 +589,7 @@ export function createTelegramDraftStream(params: {

544589

};

545590546591

const discard = async () => {

592+

clearInitialPreviewTimer();

547593

await stopForClear();

548594

};

549595