Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4262,11 +4262,6 @@ impl NodeNetworkInterface {
}
}

let previous_metadata = match &previous_input {
NodeInput::Node { node_id, .. } => self.position(node_id, network_path).map(|position| (*node_id, position)),
_ => None,
};

let Some(network) = self.network_mut(network_path) else {
log::error!("Could not get nested network in set_input");
return;
Expand Down Expand Up @@ -4303,6 +4298,12 @@ impl NodeNetworkInterface {
return;
}

// It is necessary to ensure the grpah is acyclic before calling `self.position` as it sometimes crashes with cyclic graphs #3227
let previous_metadata = match &previous_input {
NodeInput::Node { node_id, .. } => self.position(node_id, network_path).map(|position| (*node_id, position)),
_ => None,
};

self.transaction_modified();

// Ensure layer is toggled to non layer if it is no longer eligible to be a layer
Expand Down
Loading