Skip to content

Commit

Permalink
fix: http (#3596)
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu authored Jan 15, 2025
1 parent bfb598d commit 59177d3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/service/core/workflow/dispatch/tools/http468.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise<H
// 1. Replace {{key.key}} variables
const regex1 = /\{\{\$([^.]+)\.([^$]+)\$\}\}/g;
const matches1 = [...text.matchAll(regex1)];
if (matches1.length === 0) return text;
matches1.forEach((match) => {
const nodeId = match[1];
const id = match[2];
Expand Down

0 comments on commit 59177d3

Please sign in to comment.