mirror of
https://github.com/Radarr/Radarr
synced 2026-04-21 03:33:06 +02:00
Exclude movies without year in the missing page
They should not have any release dates, so not quite missing in any case.
This commit is contained in:
parent
62bdb66d0f
commit
17a9b0f7b0
1 changed files with 1 additions and 0 deletions
|
|
@ -250,6 +250,7 @@ public List<Movie> MoviesBetweenDates(DateTime start, DateTime end, bool include
|
|||
|
||||
public SqlBuilder MoviesWithoutFilesBuilder() => Builder()
|
||||
.Where<Movie>(x => x.MovieFileId == 0)
|
||||
.Where<Movie>(m => m.MovieMetadata.Value.Year > 0)
|
||||
.GroupBy<Movie>(m => m.Id)
|
||||
.GroupBy<MovieMetadata>(m => m.Id);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue