fix source handle

This commit is contained in:
takatost 2024-03-18 13:11:58 +08:00
parent 96f38b2d15
commit 69c8e4ddd1
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ class WorkflowEngineManager:
if predecessor_node.node_run_result else None
if source_handle:
for edge in outgoing_edges:
if edge.get('source_handle') and edge.get('source_handle') == source_handle:
if edge.get('sourceHandle') and edge.get('sourceHandle') == source_handle:
outgoing_edge = edge
break
else: