#Telegram Group chat issue

1 messages Β· Page 1 of 1 (latest)

spare osprey
#

Bug: Telegram group messages fail (resolveTelegramInboundBody error)
Version: 2026.4.20
Bot is admin in group, Privacy Mode OFF, group ID in openclaw.json under channels.telegram.groups
@mentions work fine. Regular (non-mention) group messages fail silently.
Error: resolveTelegramInboundBody in compiled telegram plugin
Config: groupPolicy: allowlist, group ID -1003957112886

ember boneBOT
jaunty pendantBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> βœ… Mark Solution

ember boneBOT
modest hawkBOT
#

@mentions work fine is the big clue here.

That usually means Telegram transport + group allowlist are fine, and you’re hitting mention gating, not group auth.

For Telegram, these are separate:

  • groupPolicy: "allowlist" = which groups/senders are allowed
  • requireMention = whether non-mention group messages should wake the bot

By default, group replies require mention. So if you want ordinary group messages to work, set:

{
  channels: {
    telegram: {
      groupPolicy: "allowlist",