Fixed only one movie appearing when list does not give us a tmdbid

pull/1284/head
Leonardo Galli 7 years ago
parent 8f79563cf0
commit 79307d3c25

@ -81,7 +81,19 @@ namespace NzbDrone.Core.NetImport
_logger.Debug("Found {0} movies from list(s) {1}", movies.Count, string.Join(", ", lists.Select(l => l.Definition.Name)));
return movies.DistinctBy(x => x.TmdbId).ToList();
return movies.DistinctBy(x => {
if (x.TmdbId != 0)
{
return x.TmdbId.ToString();
}
if (x.ImdbId.IsNotNullOrWhiteSpace())
{
return x.ImdbId;
}
return x.Title;
}).ToList();
}

@ -42,7 +42,7 @@ namespace NzbDrone.Core.NetImport.StevenLu
movies.AddIfNotNull(new Tv.Movie()
{
Title = item.title,
ImdbId = item.imdb_id
ImdbId = item.imdb_id,
});
}

Loading…
Cancel
Save