1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Fix download rejections being ignored.

This commit is contained in:
Leonardo Galli
2017-01-10 21:25:36 +01:00
parent 0506cc4185
commit e7fa4cba19
2 changed files with 8 additions and 2 deletions
@@ -51,6 +51,12 @@ namespace NzbDrone.Core.Download
continue;
}
if (report.Rejections.Any())
{
_logger.Debug("Rejecting release {0} because {1}", report.ToString(), report.Rejections.First().Reason);
continue;
}
if (remoteMovie == null || remoteMovie.Movie == null)
{
continue;