mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-09-25 18:59:07 +00:00
Run getSlots for non-mainline games in filterByRequest
This commit is contained in:
parent
fac06e2b1f
commit
0fb7120dfc
1 changed files with 5 additions and 0 deletions
|
@ -381,6 +381,11 @@ public class SlotsController : ControllerBase
|
|||
|
||||
private IQueryable<Slot> 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue