diff --git a/src/NzbDrone.Core/ImportLists/Custom/CustomAPIResource.cs b/src/NzbDrone.Core/ImportLists/Custom/CustomAPIResource.cs index 8db0b0f92..9b21665b4 100644 --- a/src/NzbDrone.Core/ImportLists/Custom/CustomAPIResource.cs +++ b/src/NzbDrone.Core/ImportLists/Custom/CustomAPIResource.cs @@ -4,5 +4,7 @@ namespace NzbDrone.Core.ImportLists.Custom { public string Title { get; set; } public int TvdbId { get; set; } + public int TmdbId { get; set; } + public string ImdbId { get; set; } } } diff --git a/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs b/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs index dbe2938d0..a46ea04af 100644 --- a/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs +++ b/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs @@ -44,7 +44,9 @@ namespace NzbDrone.Core.ImportLists.Custom series.Add(new ImportListItemInfo { Title = item.Title.IsNullOrWhiteSpace() ? $"TvdbId: {item.TvdbId}" : item.Title, - TvdbId = item.TvdbId + TvdbId = item.TvdbId, + TmdbId = item.TmdbId, + ImdbId = item.ImdbId }); }