diff --git a/ProjectLighthouse/Controllers/GameApi/Slots/ReviewController.cs b/ProjectLighthouse/Controllers/GameApi/Slots/ReviewController.cs index 11d5fc5a..161dd7a8 100644 --- a/ProjectLighthouse/Controllers/GameApi/Slots/ReviewController.cs +++ b/ProjectLighthouse/Controllers/GameApi/Slots/ReviewController.cs @@ -146,6 +146,7 @@ public class ReviewController : ControllerBase if (slot == null) return this.BadRequest(); IQueryable reviews = this.database.Reviews.ByGameVersion(gameVersion, true) + .Where(r => r.SlotId == slotId) .Include(r => r.Reviewer) .Include(r => r.Slot) .OrderByDescending(r => r.ThumbsUp)