fix(group-agent): 修复卡片报错
All checks were successful
Egg Server MIflow / build-image (push) Successful in 46s
All checks were successful
Egg Server MIflow / build-image (push) Successful in 46s
This commit is contained in:
parent
eb0408fcd4
commit
b4871e837a
@ -1 +1,2 @@
|
||||
view
|
||||
view
|
||||
.git
|
@ -38,7 +38,7 @@
|
||||
"@egg/hooks": "^1.2.0",
|
||||
"@egg/lark-msg-tool": "^1.4.0",
|
||||
"@egg/logger": "^1.4.3",
|
||||
"@egg/net-tool": "^1.6.5",
|
||||
"@egg/net-tool": "^1.7.1",
|
||||
"@egg/path-tool": "^1.4.1",
|
||||
"@langchain/core": "^0.3.3",
|
||||
"@langchain/openai": "^0.3.2",
|
||||
|
@ -34,4 +34,5 @@ export const manageActionMsg = async (ctx: Context.Data) => {
|
||||
const actionType = getActionType(ctx.body)
|
||||
if (actionType === "button") manageBtnClick(ctx)
|
||||
if (actionType === "select_static") manageBtnClick(ctx)
|
||||
return ctx.genResp.json()
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ export const manageBotReq = async (ctx: Context.Data): Promise<Response> => {
|
||||
// 处理Event消息
|
||||
if (getIsEventMsg(body)) manageEventMsg(ctx)
|
||||
// 处理Action消息
|
||||
if (getIsActionMsg(body)) manageActionMsg(ctx)
|
||||
if (getIsActionMsg(body)) return await manageActionMsg(ctx)
|
||||
|
||||
// 返回成功响应
|
||||
return ctx.genResp.ok()
|
||||
|
Loading…
x
Reference in New Issue
Block a user