Include ImdbId in Trakt import lists.

This commit is contained in:
CheAle14 2023-05-29 10:10:55 +01:00
parent 132474a0aa
commit 998fb11993
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ namespace NzbDrone.Core.ImportLists.Trakt
series.AddIfNotNull(new ImportListItemInfo()
{
Title = traktResponse.Show.Title,
TvdbId = traktResponse.Show.Ids.Tvdb.GetValueOrDefault()
TvdbId = traktResponse.Show.Ids.Tvdb.GetValueOrDefault(),
ImdbId = traktResponse.Show.Ids.Imdb
});
}