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

推荐订阅源

有赞技术团队
有赞技术团队
小众软件
小众软件
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
Jina AI
Jina AI
博客园 - 【当耐特】
V
Visual Studio Blog
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
量子位
IT之家
IT之家
G
Google Developers Blog
V
V2EX
The GitHub Blog
The GitHub Blog
月光博客
月光博客
GbyAI
GbyAI

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): tighten select callback handling · opencla...
obviyus · 2026-05-10 · via Recent Commits to openclaw:main

@@ -240,15 +240,40 @@ export const registerTelegramHandlers = ({

240240

};

241241242242

const MULTI_SELECT_PREFIX = "OC_MULTI|";

243+

const MULTI_SELECT_TOGGLE_PREFIX = `${MULTI_SELECT_PREFIX}toggle|`;

243244

const SELECT_PREFIX = "OC_SELECT|";

244245

const SELECTED_PREFIX = "✅ ";

245246247+

type TelegramManagedSelectCallback =

248+

| { type: "multi-toggle"; value: string }

249+

| { type: "multi-clear" }

250+

| { type: "multi-submit" }

251+

| { type: "select"; value: string };

252+246253

type TelegramCallbackButton = {

247254

text: string;

248255

callback_data: string;

249256

style?: "danger" | "success" | "primary";

250257

};

251258259+

const parseTelegramManagedSelectCallback = (

260+

data: string,

261+

): TelegramManagedSelectCallback | undefined => {

262+

if (data.startsWith(MULTI_SELECT_TOGGLE_PREFIX)) {

263+

return { type: "multi-toggle", value: data.slice(MULTI_SELECT_TOGGLE_PREFIX.length) };

264+

}

265+

if (data === `${MULTI_SELECT_PREFIX}clear`) {

266+

return { type: "multi-clear" };

267+

}

268+

if (data === `${MULTI_SELECT_PREFIX}submit`) {

269+

return { type: "multi-submit" };

270+

}

271+

if (data.startsWith(SELECT_PREFIX)) {

272+

return { type: "select", value: data.slice(SELECT_PREFIX.length) };

273+

}

274+

return undefined;

275+

};

276+252277

const cloneInlineKeyboardButtons = (message: Message): TelegramCallbackButton[][] => {

253278

const rows = (message as { reply_markup?: { inline_keyboard?: unknown } }).reply_markup

254279

?.inline_keyboard;

@@ -292,15 +317,14 @@ export const registerTelegramHandlers = ({

292317

const isSelectedMultiButton = (button: TelegramCallbackButton): boolean =>

293318

/^\s*/.test(button.text);

294319

const isMultiToggleButton = (button: TelegramCallbackButton): boolean =>

295-

typeof button.callback_data === "string" &&

296-

button.callback_data.startsWith(`${MULTI_SELECT_PREFIX}toggle|`);

320+

button.callback_data.startsWith(MULTI_SELECT_TOGGLE_PREFIX);

297321

const resolveMultiSelectedValues = (buttons: TelegramCallbackButton[][]): string[] =>

298322

buttons.flatMap((row) =>

299323

row.flatMap((button) => {

300324

if (!isMultiToggleButton(button) || !isSelectedMultiButton(button)) {

301325

return [];

302326

}

303-

return [button.callback_data.slice(`${MULTI_SELECT_PREFIX}toggle|`.length)];

327+

return [button.callback_data.slice(MULTI_SELECT_TOGGLE_PREFIX.length)];

304328

}),

305329

);

306330

const updateMultiSelectKeyboard = (

@@ -313,7 +337,7 @@ export const registerTelegramHandlers = ({

313337

if (!isMultiToggleButton(button)) {

314338

return button;

315339

}

316-

const buttonValue = button.callback_data.slice(`${MULTI_SELECT_PREFIX}toggle|`.length);

340+

const buttonValue = button.callback_data.slice(MULTI_SELECT_TOGGLE_PREFIX.length);

317341

const baseText = stripMultiSelectPrefix(button.text);

318342

const selected =

319343

action === "clear"

@@ -1694,10 +1718,17 @@ export const registerTelegramHandlers = ({

16941718

return;

16951719

}

169617201697-

if (data.startsWith(MULTI_SELECT_PREFIX)) {

1698-

const [, action, value = ""] = data.split("|");

1699-

if (action === "toggle" || action === "clear") {

1700-

const buttons = updateMultiSelectKeyboard(callbackMessage, action, value);

1721+

const managedSelectCallback = parseTelegramManagedSelectCallback(data);

1722+

if (managedSelectCallback) {

1723+

if (

1724+

managedSelectCallback.type === "multi-toggle" ||

1725+

managedSelectCallback.type === "multi-clear"

1726+

) {

1727+

const buttons = updateMultiSelectKeyboard(

1728+

callbackMessage,

1729+

managedSelectCallback.type === "multi-clear" ? "clear" : "toggle",

1730+

managedSelectCallback.type === "multi-toggle" ? managedSelectCallback.value : "",

1731+

);

17011732

if (buttons.length > 0) {

17021733

try {

17031734

await editCallbackButtons(buttons);

@@ -1709,7 +1740,8 @@ export const registerTelegramHandlers = ({

17091740

}

17101741

return;

17111742

}

1712-

if (action === "submit") {

1743+1744+

if (managedSelectCallback.type === "multi-submit") {

17131745

const selected = resolveMultiSelectedValues(cloneInlineKeyboardButtons(callbackMessage));

17141746

const synthetic = buildCallbackSyntheticTextContext({

17151747

ctx,

@@ -1724,10 +1756,7 @@ export const registerTelegramHandlers = ({

17241756

});

17251757

return;

17261758

}

1727-

}

172817591729-

if (data.startsWith(SELECT_PREFIX)) {

1730-

const value = data.slice(SELECT_PREFIX.length);

17311760

try {

17321761

await clearCallbackButtons();

17331762

} catch (editErr) {

@@ -1743,7 +1772,7 @@ export const registerTelegramHandlers = ({

17431772

ctx,

17441773

callbackMessage,

17451774

callback,

1746-

text: `Single-select submitted: ${value}`,

1775+

text: `Single-select submitted: ${managedSelectCallback.value}`,

17471776

isForum,

17481777

});

17491778

await processMessageWithReplyChain(synthetic.ctx, synthetic.message, [], storeAllowFrom, {