mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 23:45:46 +02:00
Backlog search added (disabled) - It will search for a full season if a full season is missing.
This commit is contained in:
@@ -53,7 +53,7 @@ namespace NzbDrone.Core.Providers.Jobs
|
||||
Logger.Debug("Getting episodes from database for series: {0} and season: {1}", targetId, secondaryTargetId);
|
||||
var episodes = _episodeProvider.GetEpisodesBySeason(targetId, secondaryTargetId);
|
||||
|
||||
if (episodes == null)
|
||||
if (episodes == null || episodes.Count == 0)
|
||||
{
|
||||
Logger.Warn("No episodes in database found for series: {0} and season: {1}.", targetId, secondaryTargetId);
|
||||
return;
|
||||
|
Reference in New Issue
Block a user