mirror of
https://github.com/Radarr/Radarr
synced 2025-12-13 20:05:11 +01:00
Fixed: Don't automatically import if release title doesn't match movie title
Closes #7081
This commit is contained in:
parent
e32383e763
commit
7527eff268
1 changed files with 4 additions and 0 deletions
|
|
@ -95,6 +95,10 @@ public void Check(TrackedDownload trackedDownload)
|
|||
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…
Reference in a new issue