Skip to content

Commit 1755266

Browse files
committed
Ensure profile page shows all non-spam packages
1 parent a3801f2 commit 1755266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Entity/PackageRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ public function getFilteredQueryBuilder(array $filters = [], bool $orderByName =
412412
$qb->leftJoin('v.tags', 't');
413413
}
414414

415-
$qb->andWhere('p.frozen IS NULL');
415+
$qb->andWhere('(p.frozen IS NULL OR p.frozen != \'spam\')');
416416

417417
$qb->orderBy('p.abandoned');
418418
if (true === $orderByName) {

0 commit comments

Comments
 (0)