Fixed: Don't automatically import if release title doesn't match series title
Closes #4826
This commit is contained in:
parent
f6b08f697b
commit
2a45b615ae
|
@ -93,9 +93,13 @@ namespace NzbDrone.Core.Download
|
||||||
|
|
||||||
if (series == null)
|
if (series == null)
|
||||||
{
|
{
|
||||||
trackedDownload.Warn("Series title mismatch, automatic import is not possible.");
|
trackedDownload.Warn("Series title mismatch; automatic import is not possible.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
trackedDownload.Warn("Found matching series via grab history, but release title doesn't match series title. Automatic import is not possible.");
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
trackedDownload.State = TrackedDownloadState.ImportPending;
|
trackedDownload.State = TrackedDownloadState.ImportPending;
|
||||||
|
|
Loading…
Reference in New Issue