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

推荐订阅源

罗磊的独立博客
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
U
Unit 42
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
腾讯CDC
I
InfoQ
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): skip rich entity detection for oauth email...
keshavbotage · 2026-06-24 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1239,6 +1239,33 @@ describe("deliverReplies", () => {

12391239

expect(mockCallArg(sendRichMessage, 1, 0)).not.toHaveProperty("reply_to_message_id");

12401240

});

12411241
1242+

it("skips rich entity detection for reply text with provider-prefixed email addresses", async () => {

1243+

const runtime = createRuntime();

1244+

const sendMessage = vi.fn().mockResolvedValue({

1245+

message_id: 11,

1246+

chat: { id: "123" },

1247+

});

1248+

const bot = createBot({ sendMessage });

1249+
1250+

await deliverWith({

1251+

replies: [

1252+

{ text: "OAuth profile: openai:keshavbotagent@gmail.com (keshavbotagent@gmail.com)" },

1253+

],

1254+

runtime,

1255+

bot,

1256+

richMessages: true,

1257+

});

1258+
1259+

const raw = bot.api.raw as unknown as {

1260+

sendRichMessage: ReturnType<typeof vi.fn>;

1261+

};

1262+

const richMessage = raw.sendRichMessage.mock.calls[0]?.[0]?.rich_message;

1263+

expect(richMessage).toEqual({

1264+

html: "OAuth profile: openai:keshavbotagent@gmail.com (keshavbotagent@gmail.com)",

1265+

skip_entity_detection: true,

1266+

});

1267+

});

1268+
12421269

it("uses legacy reply id when selected reply target differs from quote source", async () => {

12431270

const runtime = createRuntime();

12441271

const sendMessage = vi.fn().mockResolvedValue({

Original file line numberDiff line numberDiff line change

@@ -690,6 +690,22 @@ describe("createTelegramDraftStream", () => {

690690

expect(api.editMessageText).not.toHaveBeenCalled();

691691

});

692692
693+

it("skips rich entity detection for draft text with provider-prefixed email addresses", async () => {

694+

const api = createMockDraftApi();

695+

const stream = createDraftStream(api, { richMessages: true });

696+
697+

stream.update("OAuth profile: openai:keshavbotagent@gmail.com (keshavbotagent@gmail.com)");

698+

await stream.flush();

699+
700+

expect(api.raw.sendRichMessage).toHaveBeenCalledWith({

701+

chat_id: 123,

702+

rich_message: {

703+

html: "OAuth profile: openai:keshavbotagent@gmail.com (keshavbotagent@gmail.com)",

704+

skip_entity_detection: true,

705+

},

706+

});

707+

});

708+
693709

it("keeps rich preview html out of plain preview gating", async () => {

694710

const api = createMockDraftApi();

695711

const stream = createDraftStream(api, { richMessages: true, minInitialChars: 10 });

Original file line numberDiff line numberDiff line change

@@ -96,6 +96,16 @@ type TelegramApiWithRichRaw = Bot["api"] & {

9696

raw?: TelegramRichRawApi;

9797

};

9898
99+

const TELEGRAM_RICH_EMAIL_TOKEN_RE =

100+

/[A-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?(?:\.[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?)+/iu;

101+
102+

function shouldSkipTelegramRichEntityDetection(

103+

text: string,

104+

options?: Pick<TelegramRichMessageOptions, "skipEntityDetection">,

105+

): boolean {

106+

return options?.skipEntityDetection === true || TELEGRAM_RICH_EMAIL_TOKEN_RE.test(text);

107+

}

108+
99109

export function getTelegramRichRawApi(api: Bot["api"]): TelegramRichRawApi {

100110

const raw = (api as TelegramApiWithRichRaw).raw;

101111

if (raw) {

@@ -164,15 +174,25 @@ export function buildTelegramRichMarkdown(

164174

markdown: string,

165175

options?: TelegramRichMessageOptions,

166176

): TelegramInputRichMessage {

167-

return buildTelegramRichHtml(markdownToTelegramRichHtml(markdown, options), options);

177+

const skipEntityDetection = shouldSkipTelegramRichEntityDetection(markdown, options);

178+

return buildTelegramRichHtml(

179+

markdownToTelegramRichHtml(markdown, {

180+

...options,

181+

skipEntityDetection,

182+

}),

183+

{

184+

...options,

185+

skipEntityDetection,

186+

},

187+

);

168188

}

169189
170190

export function buildTelegramRichHtml(

171191

html: string,

172192

options?: TelegramRichMessageOptions,

173193

): TelegramInputRichMessage {

174194

const safeHtml = prepareTelegramRichHtml(html);

175-

return options?.skipEntityDetection === true

195+

return shouldSkipTelegramRichEntityDetection(safeHtml, options)

176196

? { html: safeHtml, skip_entity_detection: true }

177197

: { html: safeHtml };

178198

}

@@ -418,11 +438,14 @@ export function splitTelegramRichMessageTextChunks(params: {

418438

tableMode?: MarkdownTableMode;

419439

skipEntityDetection?: boolean;

420440

}): TelegramRichTextChunk[] {

441+

const skipEntityDetection = shouldSkipTelegramRichEntityDetection(params.text, {

442+

skipEntityDetection: params.skipEntityDetection,

443+

});

421444

const renderMarkdownChunk = (chunk: string) =>

422445

prepareTelegramRichHtml(

423446

markdownToTelegramRichHtml(chunk, {

424447

tableMode: params.tableMode,

425-

skipEntityDetection: params.skipEntityDetection,

448+

skipEntityDetection,

426449

}),

427450

);

428451

const htmlChunks =

Original file line numberDiff line numberDiff line change

@@ -956,6 +956,33 @@ describe("sendMessageTelegram", () => {

956956

expect(richMessage?.html).toContain("<table>");

957957

});

958958
959+

it("skips rich entity detection for provider-prefixed email text", async () => {

960+

botApi.sendMessage.mockResolvedValue({ message_id: 45, chat: { id: "123" } });

961+
962+

await sendMessageTelegram(

963+

"123",

964+

"OAuth profile: openai:keshavbotagent@gmail.com (keshavbotagent@gmail.com)",

965+

{

966+

cfg: {

967+

channels: {

968+

telegram: {

969+

richMessages: true,

970+

},

971+

},

972+

},

973+

token: "tok",

974+

},

975+

);

976+
977+

expect(botRawApi.sendRichMessage).toHaveBeenCalledTimes(1);

978+

const richMessage = botRawApi.sendRichMessage.mock.calls[0]?.[0]?.rich_message;

979+

expect(richMessage).toEqual({

980+

html: "OAuth profile: openai:keshavbotagent@gmail.com (keshavbotagent@gmail.com)",

981+

skip_entity_detection: true,

982+

});

983+

expect(richMessage?.html).not.toContain("mailto:");

984+

});

985+
959986

it.each([

960987

{

961988

name: "list",