From ad89700844daa385731c5760f775f2e6f440c1a6 Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Wed, 4 Feb 2026 22:14:41 -0500 Subject: [PATCH] fix(routing): swap batchStopConfirm and batchStopCancel connections Route Callback outputs 11 and 12 were swapped: - batchStopConfirm was going to Answer Batch Stop Cancel - batchStopCancel was going to Build Callback Action Now correctly routed: - batchStopConfirm (output 11) -> Build Callback Action - batchStopCancel (output 12) -> Answer Batch Stop Cancel Co-Authored-By: Claude Opus 4.5 --- n8n-workflow.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/n8n-workflow.json b/n8n-workflow.json index 9786458..e222a91 100644 --- a/n8n-workflow.json +++ b/n8n-workflow.json @@ -4822,14 +4822,14 @@ ], [ { - "node": "Answer Batch Stop Cancel", + "node": "Build Callback Action", "type": "main", "index": 0 } ], [ { - "node": "Build Callback Action", + "node": "Answer Batch Stop Cancel", "type": "main", "index": 0 }