From 3491002863d03914e4af278af7ca7a57f5cafc2b Mon Sep 17 00:00:00 2001 From: Chaz Harris <16189570+Shadowalker125@users.noreply.github.com> Date: Sun, 16 Feb 2025 11:04:19 -0600 Subject: [PATCH] Update FetchAndParseImportListService.cs Updated an oversight --- src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs b/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs index f6af0c9af..e9d6610f9 100644 --- a/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs +++ b/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs @@ -86,7 +86,7 @@ namespace NzbDrone.Core.ImportLists Task.WaitAll(taskList.ToArray()); - result = result.DistinctBy(r => new { r.Artist, r.Album }).ToList(); + result = result.DistinctBy(r => new { r.Artist, r.Album, r.ArtistMusicBrainzId}).ToList(); _logger.Debug("Found {0} total reports from {1} lists", result.Count, importLists.Count);