mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-03-05 13:20:20 -05:00
Fixed: Imdb lists only return 1 result
This commit is contained in:
@@ -64,7 +64,7 @@ namespace NzbDrone.Core.ImportLists
|
||||
|
||||
protected virtual IList<ImportListItemInfo> CleanupListItems(IEnumerable<ImportListItemInfo> 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 =>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user