mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-13 10:32:21 +02:00
Fixed: Imdb lists only return 1 result
This commit is contained in:
parent
859e48ff5c
commit
78af4823cf
@ -64,7 +64,7 @@ public virtual object RequestAction(string action, IDictionary<string, string> q
|
||||
|
||||
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
Block a user