diff --git a/.dockerignore b/.dockerignore index e99de0e..30235aa 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,2 @@ -view \ No newline at end of file +view +.git \ No newline at end of file diff --git a/bun.lockb b/bun.lockb index 5804756..059c73f 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 7b73dbc..7e07cc4 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/routes/bot/actionMsg.ts b/routes/bot/actionMsg.ts index 925501f..cf5043a 100644 --- a/routes/bot/actionMsg.ts +++ b/routes/bot/actionMsg.ts @@ -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() } diff --git a/routes/bot/index.ts b/routes/bot/index.ts index 5e074ee..89be412 100644 --- a/routes/bot/index.ts +++ b/routes/bot/index.ts @@ -26,7 +26,7 @@ export const manageBotReq = async (ctx: Context.Data): Promise => { // 处理Event消息 if (getIsEventMsg(body)) manageEventMsg(ctx) // 处理Action消息 - if (getIsActionMsg(body)) manageActionMsg(ctx) + if (getIsActionMsg(body)) return await manageActionMsg(ctx) // 返回成功响应 return ctx.genResp.ok()