openclaw - 💡(How to fix) Fix [Bug] Feishu p2p DM replies fail with SUBSCRIPTION_NOT_FOUND after upgrading to 2026.5.12

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

After upgrading from OpenClaw 2026.5.11 (or earlier) to 2026.5.12, Feishu bot p2p (DM) messages can be received but replies fail. The user receives a SUBSCRIPTION_NOT_FOUND error in the Feishu conversation.

Error Message

After upgrading from OpenClaw 2026.5.11 (or earlier) to 2026.5.12, Feishu bot p2p (DM) messages can be received but replies fail. The user receives a SUBSCRIPTION_NOT_FOUND error in the Feishu conversation. Note: dispatch reports replies=1 but the user never receives the reply. Instead they get the SUBSCRIPTION_NOT_FOUND error.

Root Cause

After upgrading from OpenClaw 2026.5.11 (or earlier) to 2026.5.12, Feishu bot p2p (DM) messages can be received but replies fail. The user receives a SUBSCRIPTION_NOT_FOUND error in the Feishu conversation.

Fix Action

Fix / Workaround

Steps to reproduce

  1. Configure Feishu channel with WebSocket connection mode
  2. Upgrade to OpenClaw 2026.5.12
  3. Send a DM to the Feishu bot
  4. Bot receives the message (confirmed in logs)
  5. Bot attempts to reply but fails — user sees {"code":"SUBSCRIPTION_NOT_FOUND","message":"No active subscription found for this group"}

Relevant logs

2026-05-19T02:29:53.198+08:00 [feishu] feishu[default]: received message from ou_5f1bd229b40784784b49e456350f9060 in oc_8ece46ead96885f8609f91b352383483 (p2p)
2026-05-19T02:29:53.219+08:00 [feishu] feishu[default]: Feishu[default] DM from ou_5f1bd229b40784784b49e456350f9060: 在么
2026-05-19T02:29:53.255+08:00 [feishu] feishu[default]: dispatching to agent (session=agent:main:feishu:direct:ou_5f1bd229b40784784b49e456350f9060)
2026-05-19T02:29:58.849+08:00 [feishu] feishu[default]: dispatch complete (queuedFinal=true, replies=1)

Note: dispatch reports replies=1 but the user never receives the reply. Instead they get the SUBSCRIPTION_NOT_FOUND error.

Code Example

2026-05-19T02:29:53.198+08:00 [feishu] feishu[default]: received message from ou_5f1bd229b40784784b49e456350f9060 in oc_8ece46ead96885f8609f91b352383483 (p2p)
2026-05-19T02:29:53.219+08:00 [feishu] feishu[default]: Feishu[default] DM from ou_5f1bd229b40784784b49e456350f9060: 在么
2026-05-19T02:29:53.255+08:00 [feishu] feishu[default]: dispatching to agent (session=agent:main:feishu:direct:ou_5f1bd229b40784784b49e456350f9060)
2026-05-19T02:29:58.849+08:00 [feishu] feishu[default]: dispatch complete (queuedFinal=true, replies=1)

---

{
  "feishu": {
    "appId": "cli_a9204552d2b85bc8",
    "domain": "feishu",
    "connectionMode": "websocket",
    "webhookPath": "/feishu/events",
    "dmPolicy": "pairing",
    "groupPolicy": "open",
    "reactionNotifications": "own",
    "typingIndicator": true,
    "resolveSenderNames": true,
    "enabled": true
  }
}
RAW_BUFFERClick to expand / collapse

Bug Report: Feishu p2p DM replies fail with SUBSCRIPTION_NOT_FOUND

Bug type

Channel - Feishu

Summary

After upgrading from OpenClaw 2026.5.11 (or earlier) to 2026.5.12, Feishu bot p2p (DM) messages can be received but replies fail. The user receives a SUBSCRIPTION_NOT_FOUND error in the Feishu conversation.

Steps to reproduce

  1. Configure Feishu channel with WebSocket connection mode
  2. Upgrade to OpenClaw 2026.5.12
  3. Send a DM to the Feishu bot
  4. Bot receives the message (confirmed in logs)
  5. Bot attempts to reply but fails — user sees {"code":"SUBSCRIPTION_NOT_FOUND","message":"No active subscription found for this group"}

Expected behavior

Bot should reply to DM messages successfully, as it did before the 5.12 upgrade.

Actual behavior

Bot receives messages but replies fail. The Feishu p2p chat (which is internally a special group oc_xxx) returns SUBSCRIPTION_NOT_FOUND when the bot tries to send a reply.

Relevant logs

2026-05-19T02:29:53.198+08:00 [feishu] feishu[default]: received message from ou_5f1bd229b40784784b49e456350f9060 in oc_8ece46ead96885f8609f91b352383483 (p2p)
2026-05-19T02:29:53.219+08:00 [feishu] feishu[default]: Feishu[default] DM from ou_5f1bd229b40784784b49e456350f9060: 在么
2026-05-19T02:29:53.255+08:00 [feishu] feishu[default]: dispatching to agent (session=agent:main:feishu:direct:ou_5f1bd229b40784784b49e456350f9060)
2026-05-19T02:29:58.849+08:00 [feishu] feishu[default]: dispatch complete (queuedFinal=true, replies=1)

Note: dispatch reports replies=1 but the user never receives the reply. Instead they get the SUBSCRIPTION_NOT_FOUND error.

OpenClaw version

2026.5.12 (f066dd2)

Operating system

macOS (Darwin 24.6.0 x64)

Install method

npm install -g openclaw

Channel configuration

{
  "feishu": {
    "appId": "cli_a9204552d2b85bc8",
    "domain": "feishu",
    "connectionMode": "websocket",
    "webhookPath": "/feishu/events",
    "dmPolicy": "pairing",
    "groupPolicy": "open",
    "reactionNotifications": "own",
    "typingIndicator": true,
    "resolveSenderNames": true,
    "enabled": true
  }
}

Additional context

  • This worked correctly before upgrading to 2026.5.12
  • No configuration or permission changes were made
  • The Feishu app has im:message and im:message:send_as_bot permissions (150 granted)
  • Contact scope permissions are missing (contact:contact.base:readonly) but this was also the case before the upgrade when things worked
  • Related issues: #58953 (P2P replies=0), #77377 (message concatenation)

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

FAQ

Expected behavior

Bot should reply to DM messages successfully, as it did before the 5.12 upgrade.

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix [Bug] Feishu p2p DM replies fail with SUBSCRIPTION_NOT_FOUND after upgrading to 2026.5.12