From 2a45b615aeee8d2bd9c34afda77466a2493e2ddc Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 21 Feb 2022 22:59:07 -0800 Subject: [PATCH] Fixed: Don't automatically import if release title doesn't match series title Closes #4826 --- src/NzbDrone.Core/Download/CompletedDownloadService.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/CompletedDownloadService.cs b/src/NzbDrone.Core/Download/CompletedDownloadService.cs index c340d26a1..888706b41 100644 --- a/src/NzbDrone.Core/Download/CompletedDownloadService.cs +++ b/src/NzbDrone.Core/Download/CompletedDownloadService.cs @@ -93,9 +93,13 @@ namespace NzbDrone.Core.Download if (series == null) { - trackedDownload.Warn("Series title mismatch, automatic import is not possible."); + trackedDownload.Warn("Series title mismatch; automatic import is not possible."); 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;