New: Support TMDb and IMDB IDs in Custom Import Lists

This commit is contained in:
Mark McDowall 2025-02-16 16:19:58 -08:00
parent 33da537a63
commit 5cebec6ae4
2 changed files with 5 additions and 1 deletions

View file

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

View file

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