From 78af4823cfa497f2f47f9f03ef13acea2ae72965 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 4 Dec 2022 09:35:50 -0600 Subject: [PATCH] Fixed: Imdb lists only return 1 result --- src/NzbDrone.Core/ImportLists/ImportListBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/ImportLists/ImportListBase.cs b/src/NzbDrone.Core/ImportLists/ImportListBase.cs index 54a888fe1..e47e9972d 100644 --- a/src/NzbDrone.Core/ImportLists/ImportListBase.cs +++ b/src/NzbDrone.Core/ImportLists/ImportListBase.cs @@ -64,7 +64,7 @@ namespace NzbDrone.Core.ImportLists protected virtual IList CleanupListItems(IEnumerable releases) { - var result = releases.DistinctBy(r => new { r.Title, r.TvdbId }).ToList(); + var result = releases.DistinctBy(r => new { r.Title, r.TvdbId, r.ImdbId }).ToList(); result.ForEach(c => {