diff --git a/src/apps/haiku-depot/Model.cpp b/src/apps/haiku-depot/Model.cpp index ef2f2b9ec66..6557bd16b6a 100644 --- a/src/apps/haiku-depot/Model.cpp +++ b/src/apps/haiku-depot/Model.cpp @@ -154,7 +154,7 @@ class SearchTermsFilter : public PackageFilter { if (!_TextContains(package.Title(), term) && !_TextContains(package.Publisher().Name(), term) && !_TextContains(package.ShortDescription(), term) - /*&& !_TextContains(package.FullDescription(), term)*/) { + && !_TextContains(package.FullDescription(), term)) { return false; } }