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;