Compare commits

..

1 Commits

Author SHA1 Message Date
Vikhyath Mondreti
a98e4f63cc fix(mcp): child workflow with response block returns error 2026-02-02 09:24:23 -08:00

View File

@@ -284,7 +284,7 @@ async function handleToolsCall(
content: [
{ type: 'text', text: JSON.stringify(executeResult.output || executeResult, null, 2) },
],
isError: !executeResult.success,
isError: executeResult.success === false,
}
return NextResponse.json(createResponse(id, result))