From 581f8fe93029c419e4d4226812f81cbf79e738f3 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Tue, 4 Nov 2025 19:54:28 -0800 Subject: [PATCH] Also add MatchType check to input_type in validation - will likely trigger when connecting to non-lazy stuff --- comfy_execution/validation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_execution/validation.py b/comfy_execution/validation.py index 5bf842536..3cca01df7 100644 --- a/comfy_execution/validation.py +++ b/comfy_execution/validation.py @@ -24,9 +24,9 @@ def validate_node_input( if not received_type != input_type: return True - # If the received type is a MatchType, we can return immediately; + # If the received type or input_type is a MatchType, we can return True immediately; # validation for this is handled by the frontend - if received_type == IO.MatchType.io_type: + if received_type == IO.MatchType.io_type or input_type == IO.MatchType.io_type: return True # If input_type is a Combo, frontend permits a Combo output to be connected,