fix: Use validated target_node_idx variable consistently
Line 190 was using raw edge_data.target_entity_id instead of the validated target_node_idx variable, creating inconsistency with line 189
This commit is contained in:
parent
943ddb932f
commit
87cb95e24d
1 changed files with 1 additions and 1 deletions
|
|
@ -187,7 +187,7 @@ async def extract_edges(
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
source_node_uuid = nodes[source_node_idx].uuid
|
source_node_uuid = nodes[source_node_idx].uuid
|
||||||
target_node_uuid = nodes[edge_data.target_entity_id].uuid
|
target_node_uuid = nodes[target_node_idx].uuid
|
||||||
|
|
||||||
if valid_at:
|
if valid_at:
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue