fix: 代码错误
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 2m19s
Egg Server CI/CD / refresh-image (push) Successful in 13s
Egg Server CI/CD / fast-deploy (push) Successful in 5s

This commit is contained in:
zhaoyingbo 2024-10-29 07:59:01 +00:00
parent 61fa783410
commit 72be22b076

View File

@ -34,6 +34,7 @@ const filterIllegalMsg = async ({
logger,
larkService,
larkBody,
app,
}: Context.Data): Promise<boolean> => {
const { chatId, msgType, msgText } = larkBody
// 没有chatId的消息不处理
@ -41,7 +42,7 @@ const filterIllegalMsg = async ({
if (!chatId) return true
// 非私聊和群聊中艾特机器人的消息不处理
if (!(await getIsP2pOrGroupAtBot(larkBody))) {
if (!(await getIsP2pOrGroupAtBot(larkBody, app))) {
return true
}
@ -65,7 +66,7 @@ const filterIllegalMsg = async ({
}
// 非表情包只在私聊或者群聊中艾特机器人时才回复
else if (await getIsP2pOrGroupAtBot(body)) {
else if (await getIsP2pOrGroupAtBot(body, app)) {
logger.info(`got a illegal message, chatId: ${chatId}`)
const content = JSON.stringify({
text: "哇!这是什么东东?我只懂普通文本啦![可爱]",