mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
New: Series search will search starting with the lowest season
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using NLog;
|
||||
using System.Linq;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Instrumentation.Extensions;
|
||||
using NzbDrone.Core.Download;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
@@ -30,7 +31,7 @@ namespace NzbDrone.Core.IndexerSearch
|
||||
|
||||
var downloadedCount = 0;
|
||||
|
||||
foreach (var season in series.Seasons)
|
||||
foreach (var season in series.Seasons.OrderBy(s => s.SeasonNumber))
|
||||
{
|
||||
if (!season.Monitored)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user