1
0
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:
Qstick 2022-12-04 09:35:50 -06:00
parent 859e48ff5c
commit 78af4823cf

View File

@ -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 =>
{