mirror of https://github.com/Sonarr/Sonarr
Fixed: Imdb lists only return 1 result
This commit is contained in:
parent
859e48ff5c
commit
78af4823cf
|
@ -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 =>
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue