Update FetchAndParseImportListService.cs

Updated an oversight
This commit is contained in:
Chaz Harris 2025-02-16 11:04:19 -06:00 committed by GitHub
commit 3491002863
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);