From f52ad363a27ff4c6a326ffece85008be8a184499 Mon Sep 17 00:00:00 2001 From: stswangzhiping <59632378+stswangzhiping@users.noreply.github.com> Date: Fri, 15 May 2026 17:30:05 +0800 Subject: [PATCH] fix: correct binded_redirect error message for personal WeChat unbind guide Co-authored-by: Cursor --- lib/channel/weixin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/channel/weixin.js b/lib/channel/weixin.js index 6c2bcc5..7bfe436 100644 --- a/lib/channel/weixin.js +++ b/lib/channel/weixin.js @@ -401,7 +401,7 @@ async function _runLogin({ callId, timeoutMs, botType, emit, isAborted }) { log.warn('weixin', `callId=${callId} binded_redirect but local token missing — state inconsistency`); emit({ action: 'finish', event: 'failed', code: 1010, - message: '微信服务端已绑定,但本地登录状态已清除。请在微信公众号后台解绑此 OpenClaw 后重新扫码登录。', + message: '微信已绑定,但本地登录已清除。请在微信 > 设置 > 隐私 > 授权管理 中找到并解除 OpenClaw 授权,再重新扫码登录。', }); } return;