mirror of
https://github.com/Jackett/Jackett
synced 2025-03-13 07:33:12 +00:00
beyondHDAPI: return tmdbid in results. untested.
This commit is contained in:
parent
30fd180eed
commit
79d3c95ae7
1 changed files with 3 additions and 0 deletions
|
@ -202,6 +202,9 @@ namespace Jackett.Common.Indexers
|
||||||
if (!string.IsNullOrEmpty(bhdResult.imdb_id))
|
if (!string.IsNullOrEmpty(bhdResult.imdb_id))
|
||||||
releaseInfo.Imdb = ParseUtil.GetImdbId(bhdResult.imdb_id);
|
releaseInfo.Imdb = ParseUtil.GetImdbId(bhdResult.imdb_id);
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(bhdResult.tmdb_id))
|
||||||
|
releaseInfo.TMDb = ParseUtil.CoerceLong(bhdResult.tmdb_id);
|
||||||
|
|
||||||
releaseInfo.DownloadVolumeFactor = 1;
|
releaseInfo.DownloadVolumeFactor = 1;
|
||||||
releaseInfo.UploadVolumeFactor = 1;
|
releaseInfo.UploadVolumeFactor = 1;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue