From 2bfc189c70df19215c55638b84134fc04a624e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 23 Nov 2025 08:57:27 +0100 Subject: [PATCH] fix: correct IPAdapter widget parameter order - IPAdapter node expects 4 parameters: weight, start_at, end_at, weight_type - Previous had 6 parameters with wrong order causing validation errors - Now correctly ordered: [0.75, 0.0, 1.0, 'style transfer'] - Fixes: 'end_at' receiving 'style transfer' and weight_type receiving 0 --- .../image-to-image/ipadapter-style-i2i-production-v1.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/comfyui/workflows/image-to-image/ipadapter-style-i2i-production-v1.json b/comfyui/workflows/image-to-image/ipadapter-style-i2i-production-v1.json index 733f217..325357a 100644 --- a/comfyui/workflows/image-to-image/ipadapter-style-i2i-production-v1.json +++ b/comfyui/workflows/image-to-image/ipadapter-style-i2i-production-v1.json @@ -197,10 +197,8 @@ "widgets_values": [ 0.75, 0.0, - "style transfer", - 0.0, 1.0, - false + "style transfer" ], "title": "Apply IP-Adapter Style" },