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

推荐订阅源

WordPress大学
WordPress大学
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
V
Visual Studio Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
The GitHub Blog
The GitHub Blog
L
LangChain Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
博客园 - Franky
阮一峰的网络日志
阮一峰的网络日志
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
V
V2EX
MyScale Blog
MyScale 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(control-ui): coalesce duplicate chat submits · opencl...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -61,6 +61,7 @@ export type ChatHost = ChatInputHistoryState & {

6161

updateComplete?: Promise<unknown>;

6262

refreshSessionsAfterChat: Set<string>;

6363

pendingAbort?: { runId: string; sessionKey: string } | null;

64+

chatSubmitGuards?: Map<string, Promise<void>>;

6465

/** Callback for slash-command side effects that need app-level access. */

6566

onSlashAction?: (action: string) => void;

6667

};

@@ -225,6 +226,54 @@ async function sendChatMessageNow(

225226

return ok;

226227

}

227228229+

function attachmentSubmitSignature(attachment: ChatAttachment): string {

230+

return JSON.stringify([

231+

attachment.id,

232+

attachment.mimeType,

233+

attachment.fileName ?? "",

234+

attachment.dataUrl.length,

235+

attachment.dataUrl.slice(0, 64),

236+

]);

237+

}

238+239+

function chatSubmitKey(

240+

host: ChatHost,

241+

kind: "btw" | "message",

242+

message: string,

243+

attachments: ChatAttachment[],

244+

): string {

245+

return JSON.stringify([

246+

kind,

247+

host.sessionKey,

248+

message.trim(),

249+

attachments.map(attachmentSubmitSignature),

250+

]);

251+

}

252+253+

async function withChatSubmitGuard<T>(

254+

host: ChatHost,

255+

key: string,

256+

run: () => Promise<T>,

257+

): Promise<T | undefined> {

258+

const guards = (host.chatSubmitGuards ??= new Map<string, Promise<void>>());

259+

if (guards.has(key)) {

260+

return undefined;

261+

}

262+

let releaseGuard!: () => void;

263+

const guard = new Promise<void>((resolve) => {

264+

releaseGuard = resolve;

265+

});

266+

guards.set(key, guard);

267+

try {

268+

return await run();

269+

} finally {

270+

releaseGuard();

271+

if (guards.get(key) === guard) {

272+

guards.delete(key);

273+

}

274+

}

275+

}

276+228277

async function sendDetachedBtwMessage(

229278

host: ChatHost,

230279

message: string,

@@ -362,16 +411,19 @@ export async function handleSendChat(

362411

}

363412364413

if (isBtwCommand(message)) {

365-

if (messageOverride == null) {

366-

recordNonTranscriptInputHistory(host, message);

367-

host.chatMessage = "";

368-

host.chatAttachments = [];

369-

resetChatInputHistoryNavigation(host);

370-

}

371-

await sendDetachedBtwMessage(host, message, {

372-

previousDraft: messageOverride == null ? previousDraft : undefined,

373-

attachments: hasAttachments ? attachmentsToSend : undefined,

374-

previousAttachments: messageOverride == null ? attachments : undefined,

414+

const submitKey = chatSubmitKey(host, "btw", message, attachmentsToSend);

415+

await withChatSubmitGuard(host, submitKey, async () => {

416+

if (messageOverride == null) {

417+

recordNonTranscriptInputHistory(host, message);

418+

host.chatMessage = "";

419+

host.chatAttachments = [];

420+

resetChatInputHistoryNavigation(host);

421+

}

422+

await sendDetachedBtwMessage(host, message, {

423+

previousDraft: messageOverride == null ? previousDraft : undefined,

424+

attachments: hasAttachments ? attachmentsToSend : undefined,

425+

previousAttachments: messageOverride == null ? attachments : undefined,

426+

});

375427

});

376428

return;

377429

}

@@ -407,27 +459,30 @@ export async function handleSendChat(

407459

}

408460409461

const refreshSessions = isChatResetCommand(message);

410-

if (messageOverride == null) {

411-

host.chatMessage = "";

412-

host.chatAttachments = [];

413-

resetChatInputHistoryNavigation(host);

414-

}

415-416-

if (isChatBusy(host)) {

462+

const submitKey = chatSubmitKey(host, "message", message, attachmentsToSend);

463+

await withChatSubmitGuard(host, submitKey, async () => {

417464

if (messageOverride == null) {

418-

recordNonTranscriptInputHistory(host, message);

465+

host.chatMessage = "";

466+

host.chatAttachments = [];

467+

resetChatInputHistoryNavigation(host);

468+

}

469+470+

if (isChatBusy(host)) {

471+

if (messageOverride == null) {

472+

recordNonTranscriptInputHistory(host, message);

473+

}

474+

enqueueChatMessage(host, message, attachmentsToSend, refreshSessions);

475+

return;

419476

}

420-

enqueueChatMessage(host, message, attachmentsToSend, refreshSessions);

421-

return;

422-

}

423477424-

await sendChatMessageNow(host, message, {

425-

previousDraft: messageOverride == null ? previousDraft : undefined,

426-

restoreDraft: Boolean(messageOverride && opts?.restoreDraft),

427-

attachments: hasAttachments ? attachmentsToSend : undefined,

428-

previousAttachments: messageOverride == null ? attachments : undefined,

429-

restoreAttachments: Boolean(messageOverride && opts?.restoreDraft),

430-

refreshSessions,

478+

await sendChatMessageNow(host, message, {

479+

previousDraft: messageOverride == null ? previousDraft : undefined,

480+

restoreDraft: Boolean(messageOverride && opts?.restoreDraft),

481+

attachments: hasAttachments ? attachmentsToSend : undefined,

482+

previousAttachments: messageOverride == null ? attachments : undefined,

483+

restoreAttachments: Boolean(messageOverride && opts?.restoreDraft),

484+

refreshSessions,

485+

});

431486

});

432487

}

433488