mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 14:55:20 -07:00
Merge pull request #352 from baltoaca/develop
bug fix for 15 movie wanted tab limit
This commit is contained in:
commit
30e50062a8
1 changed files with 10 additions and 6 deletions
|
@ -4,6 +4,7 @@ using System.Collections.Generic;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.Messaging.Events;
|
using NzbDrone.Core.Messaging.Events;
|
||||||
using NzbDrone.Core.Datastore.Extensions;
|
using NzbDrone.Core.Datastore.Extensions;
|
||||||
|
using Marr.Data.QGen;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Tv
|
namespace NzbDrone.Core.Tv
|
||||||
{
|
{
|
||||||
|
@ -137,17 +138,20 @@ namespace NzbDrone.Core.Tv
|
||||||
public PagingSpec<Movie> MoviesWithoutFiles(PagingSpec<Movie> pagingSpec)
|
public PagingSpec<Movie> MoviesWithoutFiles(PagingSpec<Movie> pagingSpec)
|
||||||
{
|
{
|
||||||
|
|
||||||
var query = Query.Where(pagingSpec.FilterExpression)
|
pagingSpec.TotalRecords = GetMoviesWithoutFilesQuery(pagingSpec).GetRowCount();
|
||||||
|
pagingSpec.Records = GetMoviesWithoutFilesQuery(pagingSpec).ToList();
|
||||||
|
|
||||||
|
return pagingSpec;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SortBuilder<Movie> GetMoviesWithoutFilesQuery(PagingSpec<Movie> pagingSpec)
|
||||||
|
{
|
||||||
|
return Query.Where(pagingSpec.FilterExpression)
|
||||||
.AndWhere(m => m.MovieFileId == 0)
|
.AndWhere(m => m.MovieFileId == 0)
|
||||||
.AndWhere(m => m.Status == MovieStatusType.Released)
|
.AndWhere(m => m.Status == MovieStatusType.Released)
|
||||||
.OrderBy(pagingSpec.OrderByClause(), pagingSpec.ToSortDirection())
|
.OrderBy(pagingSpec.OrderByClause(), pagingSpec.ToSortDirection())
|
||||||
.Skip(pagingSpec.PagingOffset())
|
.Skip(pagingSpec.PagingOffset())
|
||||||
.Take(pagingSpec.PageSize);
|
.Take(pagingSpec.PageSize);
|
||||||
|
|
||||||
pagingSpec.Records = query.ToList();
|
|
||||||
pagingSpec.TotalRecords = pagingSpec.Records.Count;
|
|
||||||
|
|
||||||
return pagingSpec;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue