feat(event-proxy): 转发的时候过滤掉消息
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 2m1s
Egg Server CI/CD / refresh-image (push) Successful in 14s
Egg Server CI/CD / fast-deploy (push) Successful in 3s

This commit is contained in:
zhaoyingbo 2024-10-29 08:39:47 +00:00
parent 72be22b076
commit 69254635c8

View File

@ -22,7 +22,7 @@ export const manageBotReq = async (ctx: Context.Data): Promise<Response> => {
}
// 如果是michat的Event转发给MiChatServer
if (app === "michat" && larkBody.isEvent) {
if (app === "michat" && larkBody.isEvent && !larkBody.isMessageEvent) {
attachService.proxyMiChatEvent(body)
}