From 99612a96494e662dfdb9e6578510ead55e32e65c Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Wed, 4 Feb 2026 21:52:36 -0500 Subject: [PATCH] fix(10.1-05): fix Route Action connections in status sub-workflow Switch node connections must use "main" array format with indices, not named output keys. Changed from: { "list": [...], "status": [...] } to: { "main": [ [...], [...], [...] ] } Co-Authored-By: Claude Opus 4.5 --- n8n-status.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/n8n-status.json b/n8n-status.json index cc52ad9..b5303f2 100644 --- a/n8n-status.json +++ b/n8n-status.json @@ -276,25 +276,21 @@ ] }, "Route Action": { - "list": [ + "main": [ [ { "node": "Prepare List Request", "type": "main", "index": 0 } - ] - ], - "status": [ + ], [ { "node": "Prepare Status Request", "type": "main", "index": 0 } - ] - ], - "paginate": [ + ], [ { "node": "Prepare Paginate Request", @@ -381,4 +377,4 @@ }, "staticData": null, "tags": [] -} +} \ No newline at end of file