Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Oct 5, 2024
1 parent 650e787 commit 2c18da3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected internal bool TryOrderByLoadOrderTW(IEnumerable<string> loadOrder, Fun
return false;
}

var loadOrderValidationIssues = LoadOrderChecker.IsLoadOrderCorrect(existingOrderedViewModels.Select(x => x.ModuleInfoExtended).ToList()).ToList();
var loadOrderValidationIssues = LoadOrderChecker.IsLoadOrderCorrect(existingOrderedViewModels.Where(x => x.IsSelected).Select(x => x.ModuleInfoExtended).ToList()).ToList();
if (!overwriteWhenFailure && loadOrderValidationIssues.Count != 0)
{
issues = loadOrderValidationIssues;
Expand Down

0 comments on commit 2c18da3

Please sign in to comment.