mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
New: When searching for episodes, newer reports are given priority over older reports of equal quality.
This commit is contained in:
parent
5bf56ffca3
commit
ac84d76ef9
2 changed files with 35 additions and 2 deletions
|
@ -231,7 +231,7 @@ namespace NzbDrone.Core.Providers
|
|||
{
|
||||
var successes = new List<int>();
|
||||
|
||||
foreach (var episodeParseResult in reports.OrderByDescending(c => c.Quality))
|
||||
foreach (var episodeParseResult in reports.OrderByDescending(c => c.Quality).ThenBy(c => c.Age))
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue