Skip to content

Commit

Permalink
NoGame module - don't include "Unknown Game"
Browse files Browse the repository at this point in the history
  • Loading branch information
adelikat committed Sep 13, 2024
1 parent 3da3b95 commit 85799ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TASVideos/WikiModules/NoGame.cshtml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public async Task<IViewComponentResult> InvokeAsync()
.Select(p => new Entry(p.Id, p.Title))
.ToListAsync();
Submissions = await db.Submissions
.Where(s => s.GameId == null || s.GameId < 1)
.Where(s => s.GameId == null)
.ThatAreInActive()
.OrderBy(p => p.Id)
.Select(s => new Entry(s.Id, s.Title))
Expand Down

0 comments on commit 85799ef

Please sign in to comment.