From 83e19d7cd97a6e6b49d6fbd61e29dde74f179da9 Mon Sep 17 00:00:00 2001 From: Lamarcke Date: Sun, 20 Oct 2024 21:16:15 -0300 Subject: [PATCH] - removes exclusion of reviews with no content from trending reviews (fix score-only reviews not being shown in game info page) --- src/statistics/review-statistics.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/statistics/review-statistics.service.ts b/src/statistics/review-statistics.service.ts index 4a4c3ed..57665c7 100644 --- a/src/statistics/review-statistics.service.ts +++ b/src/statistics/review-statistics.service.ts @@ -212,7 +212,6 @@ export class ReviewStatisticsService implements StatisticsService { gameId: dto?.gameId, profileUserId: dto?.userId, id: dto?.reviewId, - content: Not(IsNull()), }; const findOptionsWhere: FindOptionsWhere = { review: reviewFindOptionsWhere,