This commit is contained in:
TidusJar 2019-02-26 21:22:25 +00:00
parent 65d1672d2b
commit e95ca1523d
8 changed files with 35 additions and 3 deletions

View file

@ -46,6 +46,12 @@ namespace Ombi.Core.Engine.V2
return await ProcessSingleMovie(movieInfo);
}
public async Task<int> GetTvDbId(int theMovieDbId)
{
var result = await MovieApi.GetTvExternals(theMovieDbId);
return result.tvdb_id;
}
/// <summary>
/// Get similar movies to the id passed in
/// </summary>