修复 ComWeChat 回复消息解析错误

This commit is contained in:
🌌 2023-07-19 19:18:38 +08:00
parent e94b60da7d
commit 05193e5e01
1 changed files with 3 additions and 0 deletions

View File

@ -353,6 +353,9 @@ Bot.adapter.push(new class ComWeChatAdapter {
case "voice":
message.push({ type: "record", ...i.data })
break
case "reply":
message.push({ type: "reply", id: i.data.message_id, user_id: i.data.user_id })
break
default:
message.push({ type: i.type, ...i.data })
}