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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
L
LangChain Blog
博客园 - Franky
美团技术团队
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
小众软件
小众软件
Y
Y Combinator Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News

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/groups): treat empty `accounts.<id>.groups: ...
kinjitakabe · 2026-05-13 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -67,6 +67,7 @@ Docs: https://docs.openclaw.ai

6767

- fix(gateway): honor minimal discovery mode for wide-area DNS-SD [AI]. (#80903) Thanks @pgondhi987.

6868

- slack: enforce reaction notification policy [AI]. (#80907) Thanks @pgondhi987.

6969

- Enforce gateway command scopes by caller context [AI]. (#80891) Thanks @pgondhi987.

70+

- Telegram/groups: in single-account setups, treat an explicit empty `accounts.<id>.groups: {}` map the same as undefined so the root `channels.telegram.groups` allowlist still applies, instead of silently dropping every group update under the default `groupPolicy: "allowlist"`. Multi-account semantics are unchanged so per-account explicit-empty groups still scope-disable a single account without affecting siblings; the explicit way to block all groups for any account remains `groupPolicy: "disabled"`. Fixes #79427. Thanks @nikolaykazakovvs-ux.

7071

- Enforce Slack plugin approval button authorization [AI]. (#80899) Thanks @pgondhi987.

7172

- Recognize PowerShell -ec inline commands [AI]. (#80893) Thanks @pgondhi987.

7273

- fix(qqbot): authorize approval button callbacks [AI]. (#80892) Thanks @pgondhi987.

Original file line numberDiff line numberDiff line change

@@ -68,9 +68,19 @@ export function mergeTelegramAccountConfig(

6868

const account = resolveTelegramAccountConfig(cfg, accountId) ?? {};

6969
7070

// Multi-account bots must not inherit channel-level groups unless explicitly set.

71+

// Single-account bots fall back to root `channels.telegram.groups` when the

72+

// account does not declare its own groups — including the empty-literal case

73+

// `accounts.<id>.groups: {}`, which is almost always a config-migration

74+

// artifact rather than an intentional "block all" declaration (use

75+

// `groupPolicy: "disabled"` for that).

7176

const configuredAccountIds = Object.keys(cfg.channels?.telegram?.accounts ?? {});

7277

const isMultiAccount = configuredAccountIds.length > 1;

73-

const groups = account.groups ?? (isMultiAccount ? undefined : channelGroups);

78+

const hasAccountGroups = account.groups && Object.keys(account.groups).length > 0;

79+

const groups = isMultiAccount

80+

? account.groups

81+

: hasAccountGroups

82+

? account.groups

83+

: channelGroups;

7484

const allowFrom = resolveMergedAllowFrom({

7585

baseAllowFrom: base.allowFrom,

7686

accountAllowFrom: account.allowFrom,

Original file line numberDiff line numberDiff line change

@@ -536,6 +536,24 @@ describe("resolveTelegramAccount groups inheritance (#30673)", () => {

536536

expect(resolved.config.groups).toEqual({ "-100123": { requireMention: false } });

537537

});

538538
539+

it("inherits channel-level groups when single-account explicitly sets `groups: {}` (regression: #79427)", () => {

540+

const resolved = resolveTelegramAccount({

541+

cfg: {

542+

channels: {

543+

telegram: {

544+

groups: { "-100123": { requireMention: false } },

545+

accounts: {

546+

default: { botToken: "123:default", groups: {} },

547+

},

548+

},

549+

},

550+

},

551+

accountId: "default",

552+

});

553+
554+

expect(resolved.config.groups).toEqual({ "-100123": { requireMention: false } });

555+

});

556+
539557

it("does NOT inherit channel-level groups to secondary account in multi-account setup", () => {

540558

const resolved = resolveTelegramAccount({

541559

cfg: createMultiAccountGroupsConfig(),

Original file line numberDiff line numberDiff line change

@@ -169,6 +169,68 @@ describe("resolveChannelGroupPolicy", () => {

169169

}),

170170

).toBe(false);

171171

});

172+
173+

it("falls back to root channel groups when account.groups is an empty object (regression: #79427)", () => {

174+

const cfg = {

175+

channels: {

176+

telegram: {

177+

groupPolicy: "allowlist",

178+

groups: {

179+

"-100123": { requireMention: false },

180+

},

181+

accounts: {

182+

default: { botToken: "123:default", groups: {} },

183+

},

184+

},

185+

},

186+

} as OpenClawConfig;

187+
188+

const policy = resolveChannelGroupPolicy({

189+

cfg,

190+

channel: "telegram",

191+

groupId: "-100123",

192+

accountId: "default",

193+

});

194+
195+

expect(policy.allowlistEnabled).toBe(true);

196+

expect(policy.allowed).toBe(true);

197+

});

198+
199+

it("uses populated account.groups instead of root when both are configured", () => {

200+

const cfg = {

201+

channels: {

202+

telegram: {

203+

groupPolicy: "allowlist",

204+

groups: {

205+

"-100root": { requireMention: false },

206+

},

207+

accounts: {

208+

default: {

209+

botToken: "123:default",

210+

groups: { "-100account": { requireMention: false } },

211+

},

212+

},

213+

},

214+

},

215+

} as OpenClawConfig;

216+
217+

expect(

218+

resolveChannelGroupPolicy({

219+

cfg,

220+

channel: "telegram",

221+

groupId: "-100account",

222+

accountId: "default",

223+

}).allowed,

224+

).toBe(true);

225+

expect(

226+

resolveChannelGroupPolicy({

227+

cfg,

228+

channel: "telegram",

229+

groupId: "-100root",

230+

accountId: "default",

231+

}).allowed,

232+

).toBe(false);

233+

});

172234

});

173235
174236

describe("resolveToolsBySender", () => {

Original file line numberDiff line numberDiff line change

@@ -340,6 +340,21 @@ function resolveChannelGroups(

340340

return undefined;

341341

}

342342

const accountGroups = resolveAccountEntry(channelConfig.accounts, normalizedAccountId)?.groups;

343+

// In a single-account setup, treat an explicit empty account groups map

344+

// (`accounts.<id>.groups: {}`) the same as undefined for fallback: the empty

345+

// literal is almost always a config-migration artifact, not an intentional

346+

// "block all groups" declaration — the explicit way to block is

347+

// `groupPolicy: "disabled"` (or omitting the group from a populated

348+

// allowlist). Without this, an empty `{}` paired with the default

349+

// `groupPolicy: "allowlist"` silently denies every group update even though

350+

// root `channels.<channel>.groups` is populated. Multi-account contexts keep

351+

// the existing semantics so per-account explicit-empty groups still scope

352+

// disable a single account without affecting siblings.

353+

const isMultiAccount = Object.keys(channelConfig.accounts ?? {}).length > 1;

354+

if (!isMultiAccount) {

355+

const hasAccountGroups = accountGroups && Object.keys(accountGroups).length > 0;

356+

return hasAccountGroups ? accountGroups : channelConfig.groups;

357+

}

343358

return accountGroups ?? channelConfig.groups;

344359

}

345360