fix: action类型消息处理错误
This commit is contained in:
parent
fd07d388c2
commit
1c6c3cef89
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user