1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Manual search no longer permits downloading releases for which we can't find an episode until we can fix the association logic.

This commit is contained in:
Taloth Saldono 2015-02-10 23:23:57 +01:00
parent 77edf53c6a
commit e00ec8b01b

View File

@ -80,7 +80,7 @@ private IEnumerable<DownloadDecision> GetDecisions(List<ReleaseInfo> reports, Se
if (remoteEpisode.Series != null)
{
remoteEpisode.DownloadAllowed = true;
remoteEpisode.DownloadAllowed = remoteEpisode.Episodes.Any();
decision = GetDecisionForReport(remoteEpisode, searchCriteria);
}
else