Skip to content

Commit

Permalink
only show recommended label for recommended mods, not suggested
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool committed Jan 13, 2025
1 parent 4e3f764 commit 5f64d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loader/src/loader/Loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ std::vector<LoadProblem> Loader::getOutdated() const {
std::vector<LoadProblem> Loader::getRecommendations() const {
std::vector<LoadProblem> result;
for (auto problem : this->getAllProblems()) {
if (problem.isSuggestion()) {
if (problem.type == LoadProblem::Type::Recommendation) {
result.push_back(problem);
}
}
Expand Down

0 comments on commit 5f64d77

Please sign in to comment.