New: Support TMDb and IMDB IDs in Custom Import Lists

pull/7657/head
Mark McDowall 2 months ago
parent 33da537a63
commit 5cebec6ae4

@ -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; }
}
}

@ -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
});
}

Loading…
Cancel
Save