fix: action类型消息处理错误
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 51s
Egg Server CI/CD / refresh-image (push) Successful in 15s
Egg Server CI/CD / fast-deploy (push) Successful in 2s

This commit is contained in:
zhaoyingbo 2024-10-12 10:30:10 +00:00
parent fd07d388c2
commit 1c6c3cef89

View File

@ -31,7 +31,8 @@ export const manageActionMsg = async (ctx: Context.Data) => {
const {
larkBody: { actionType },
} = ctx
if (["button", "select_static"].includes(actionType!)) return ctx.genResp.ok()
if (!["button", "select_static"].includes(actionType!))
return ctx.genResp.ok()
const card = await manageAction(ctx)
if (card) return ctx.genResp.custom(card)
return ctx.genResp.ok()