Fixed: Don't automatically import if release title doesn't match movie title

Closes #7081
pull/8422/head
Qstick 1 year ago
parent e32383e763
commit 7527eff268

@ -95,6 +95,10 @@ namespace NzbDrone.Core.Download
trackedDownload.Warn("Movie title mismatch, automatic import is not possible.");
return;
}
trackedDownload.Warn("Found matching movie via grab history, but release title doesn't match movie title. Automatic import is not possible.");
return;
}
trackedDownload.State = TrackedDownloadState.ImportPending;

Loading…
Cancel
Save