We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e3f764 commit 5f64d77Copy full SHA for 5f64d77
loader/src/loader/Loader.cpp
@@ -89,7 +89,7 @@ std::vector<LoadProblem> Loader::getOutdated() const {
89
std::vector<LoadProblem> Loader::getRecommendations() const {
90
std::vector<LoadProblem> result;
91
for (auto problem : this->getAllProblems()) {
92
- if (problem.isSuggestion()) {
+ if (problem.type == LoadProblem::Type::Recommendation) {
93
result.push_back(problem);
94
}
95
0 commit comments