mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
Fixed: An issue with Episode Searches that had full season results
This commit is contained in:
parent
25aa39e0f3
commit
4ea55444be
1 changed files with 1 additions and 1 deletions
|
@ -263,7 +263,7 @@ namespace NzbDrone.Core.Providers
|
|||
searchResult.Successes = new List<int>();
|
||||
|
||||
foreach (var episodeParseResult in reports.OrderByDescending(c => c.Quality)
|
||||
.ThenBy(c => c.EpisodeNumbers.Min())
|
||||
.ThenBy(c => c.EpisodeNumbers.MinOrDefault())
|
||||
.ThenBy(c => c.Age))
|
||||
{
|
||||
try
|
||||
|
|
Loading…
Reference in a new issue