From bed5cfec84c104cd47c5f6a2aff7ad844bb92e10 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Tue, 29 Apr 2025 02:18:13 -0500 Subject: [PATCH] Fix image_luma_ref not working (#28) Co-authored-by: Robin Huang --- comfy_api_nodes/nodes_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api_nodes/nodes_api.py b/comfy_api_nodes/nodes_api.py index cfd9b3e40..45654e61b 100644 --- a/comfy_api_nodes/nodes_api.py +++ b/comfy_api_nodes/nodes_api.py @@ -1053,7 +1053,7 @@ class LumaImageGenerationNode: # handle image_luma_ref api_image_ref = None if image_luma_ref is not None: - api_image_ref = self._convert_luma_refs(image_luma_ref, auth_token=auth_token) + api_image_ref = self._convert_luma_refs(image_luma_ref, max_refs=4, auth_token=auth_token) # handle style_luma_ref api_style_ref = None if style_image is not None: