fix(net-tool): 更新 replyCard 方法,返回回复的消息 ID
All checks were successful
/ release (push) Successful in 24s

This commit is contained in:
zhaoyingbo 2025-01-24 08:13:56 +00:00
parent 7d8b04bd1a
commit 9650cc318c

View File

@ -154,12 +154,13 @@ class LarkMessageService extends LarkBaseService {
return async (content: string) => {
if (repliedMessageId) {
await this.update(repliedMessageId, content)
return
return repliedMessageId
}
const res = await this.replyCard(messageId, content)
if ("data" in res) {
repliedMessageId = res.data.message_id
}
return repliedMessageId
}
}
}