Skip to content

Commit 5f64d77

Browse files
committed
only show recommended label for recommended mods, not suggested
1 parent 4e3f764 commit 5f64d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loader/src/loader/Loader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ std::vector<LoadProblem> Loader::getOutdated() const {
8989
std::vector<LoadProblem> Loader::getRecommendations() const {
9090
std::vector<LoadProblem> result;
9191
for (auto problem : this->getAllProblems()) {
92-
if (problem.isSuggestion()) {
92+
if (problem.type == LoadProblem::Type::Recommendation) {
9393
result.push_back(problem);
9494
}
9595
}

0 commit comments

Comments
 (0)