1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00

Allow manual downloads

This commit is contained in:
Mark McDowall 2013-09-20 22:49:54 -07:00
parent 32b287387d
commit c5908c52a5

View File

@ -70,11 +70,11 @@ private IEnumerable<DownloadDecision> GetDecisions(List<ReleaseInfo> reports, Se
if (remoteEpisode.Series != null)
{
remoteEpisode.DownloadAllowed = true;
decision = GetDecisionForReport(remoteEpisode, searchCriteria);
}
else
{
remoteEpisode.DownloadAllowed = false;
decision = new DownloadDecision(remoteEpisode, "Unknown Series");
}
}