From 224f5469ab8ae29821ec46e0fe97445d778d3cad Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Wed, 4 Feb 2026 22:00:09 -0500 Subject: [PATCH] fix(routing): correct Route Callback connection offsets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The batch rule was added at index 4 but connections weren't updated, causing all subsequent rules to route to wrong handlers: - select → Answer List Callback (wrong) - list → Answer Action Callback (wrong) - action → Answer Noop Callback (wrong) - noop → nothing (missing) Fixed by correcting outputs 5-8 to connect to proper handlers. Co-Authored-By: Claude Opus 4.5 --- n8n-workflow.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/n8n-workflow.json b/n8n-workflow.json index 1382d8d..7ef4021 100644 --- a/n8n-workflow.json +++ b/n8n-workflow.json @@ -4805,6 +4805,13 @@ "index": 0 } ], + [ + { + "node": "Answer Select Callback", + "type": "main", + "index": 0 + } + ], [ { "node": "Answer List Callback", @@ -4826,7 +4833,6 @@ "index": 0 } ], - [], [ { "node": "Prepare Confirm Input", @@ -4896,7 +4902,8 @@ "type": "main", "index": 0 } - ] + ], + [] ] }, "Handle Cancel": {