Skip to content

Commit

Permalink
Merge #3988 Fix Audit Recommendations option
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Dec 31, 2023
2 parents 563f16c + 07a76cb commit cbfad76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file.
- [Core] Fix NullReferenceException in csv/tsv export (#3967 by: HebaruSan)
- [Core] Fix cache timestamp comparisons (#3974 by: HebaruSan)
- [GUI] Fix compatible popup messing with max game version column (#3976 by: HebaruSan)
- [Core] Fix Audit Recommendations option (#3988 by: HebaruSan)

### Internal

Expand Down
3 changes: 2 additions & 1 deletion Core/ModuleInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,8 @@ public bool FindRecommendations(HashSet<CkanModule>
out Dictionary<CkanModule, HashSet<string>> supporters)
{
var crit = ksp.VersionCriteria();
var resolver = new RelationshipResolver(sourceModules, null,
var resolver = new RelationshipResolver(sourceModules.Where(m => !m.IsDLC),
null,
RelationshipResolverOptions.KitchenSinkOpts(),
registry, crit);
var recommenders = resolver.Dependencies().ToHashSet();
Expand Down

0 comments on commit cbfad76

Please sign in to comment.