From 7a933f73b6ca4e2f8de50d93667204a24a5609ad Mon Sep 17 00:00:00 2001 From: Archer <545436317@qq.com> Date: Fri, 8 Nov 2024 11:56:18 +0800 Subject: [PATCH] fix: http tool response (#3097) --- packages/service/core/workflow/dispatch/tools/http468.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/service/core/workflow/dispatch/tools/http468.ts b/packages/service/core/workflow/dispatch/tools/http468.ts index ab7e019e9..6f5a683f0 100644 --- a/packages/service/core/workflow/dispatch/tools/http468.ts +++ b/packages/service/core/workflow/dispatch/tools/http468.ts @@ -237,7 +237,9 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise - item.key !== NodeOutputKeyEnum.error && item.key !== NodeOutputKeyEnum.httpRawResponse + item.id !== NodeOutputKeyEnum.error && + item.id !== NodeOutputKeyEnum.httpRawResponse && + item.id !== NodeOutputKeyEnum.addOutputParam ) .forEach((item) => { const key = item.key.startsWith('$') ? item.key : `$.${item.key}`;