1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00

New: Support import list lookup by TMDb ID

This commit is contained in:
Mark McDowall
2023-11-16 16:34:44 -08:00
parent 71fd09f162
commit c028222617
4 changed files with 28 additions and 2 deletions
@@ -90,6 +90,13 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
return results;
}
public List<Series> SearchForNewSeriesByTmdbId(int tmdbId)
{
var results = SearchForNewSeries($"tmdb:{tmdbId}");
return results;
}
public List<Series> SearchForNewSeries(string title)
{
try