diff --git a/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs b/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs index 90cde11e..90aff8f5 100644 --- a/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs +++ b/ProjectLighthouse/Controllers/GameApi/Slots/SlotsController.cs @@ -381,6 +381,11 @@ public class SlotsController : ControllerBase private IQueryable filterByRequest(string? gameFilterType, string? dateFilterType, GameVersion version) { + if (version == GameVersion.LittleBigPlanetVita || version == GameVersion.LittleBigPlanetPSP || version == GameVersion.Unknown) + { + return this.getSlots(version); + } + string _dateFilterType = dateFilterType ?? ""; long oldestTime = _dateFilterType switch