mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Fixed: Issues with Custom Start Date
This commit is contained in:
parent
d25da21e58
commit
40accd835b
3 changed files with 11 additions and 1 deletions
|
@ -31,7 +31,7 @@ namespace NzbDrone.Core.Providers.DecisionEngine
|
|||
|
||||
var episodes = _episodeProvider.GetEpisodesByParseResult(subject);
|
||||
|
||||
if (episodes.Any(episode => episode.AirDate > subject.Series.CustomStartDate.Value))
|
||||
if (episodes.Any(episode => episode.AirDate >= subject.Series.CustomStartDate.Value))
|
||||
{
|
||||
logger.Debug("One or more episodes aired after cutoff, downloading.");
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue