mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Fix collection behavior when sorting by rating or runtime (#14148)
Co-authored-by: Max <no@example.com>
This commit is contained in:
parent
44981cd823
commit
c3762186da
@ -1222,11 +1222,6 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (request.IsPlayed.HasValue)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(request.Person))
|
if (!string.IsNullOrWhiteSpace(request.Person))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
@ -1267,21 +1262,19 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (request.MinCommunityRating.HasValue)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (request.MinCriticRating.HasValue)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (request.MinIndexNumber.HasValue)
|
if (request.MinIndexNumber.HasValue)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (request.OrderBy.Any(o =>
|
||||||
|
o.OrderBy == ItemSortBy.CommunityRating ||
|
||||||
|
o.OrderBy == ItemSortBy.CriticRating ||
|
||||||
|
o.OrderBy == ItemSortBy.Runtime))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user