From 8d264020aa9f1f2c644cbaf310b0bd7c12f8eda6 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 21 May 2023 15:20:57 -0500 Subject: [PATCH] Fixed: Don't match if movie year parsed but is mismatch Fixes #8548 --- src/NzbDrone.Core/Parser/ParsingService.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index 3496d37c8..ab189c316 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -192,16 +192,6 @@ namespace NzbDrone.Core.Parser return new FindMovieResult(movieByTitleAndOrYear, MovieMatchType.Title); } - // Only default to not using year when one is parsed if only one movie candidate exists - if (candidates != null && candidates.Count == 1) - { - movieByTitleAndOrYear = _movieService.FindByTitle(parsedMovieInfo.MovieTitles, null, otherTitles, candidates); - if (movieByTitleAndOrYear != null) - { - return new FindMovieResult(movieByTitleAndOrYear, MovieMatchType.Title); - } - } - return null; }