Skip to content

Commit 1fde1e0

Browse files
authored
Fix condition to add missing nodes in workflow
1 parent ecb261b commit 1fde1e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

StabilityMatrix.Avalonia/ViewModels/Dialogs/OpenArtWorkflowViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ out var manifestExtension
164164
// Add missing nodes to the list (deduplicate by title)
165165
if (
166166
!currentSection.IsInstalled
167+
&& addedMissingNodes.Add(node)
167168
&& nameToManifestNodes.TryGetValue(node, out var manifestNode)
168-
&& addedMissingNodes.Add(manifestNode.Title)
169169
)
170170
{
171171
MissingNodes.Add(manifestNode);

0 commit comments

Comments
 (0)