From 79d3c95ae72583ca33c28417fbdcd817361be75b Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Tue, 6 Feb 2024 17:57:39 +1300 Subject: [PATCH] beyondHDAPI: return tmdbid in results. untested. --- src/Jackett.Common/Indexers/BeyondHDAPI.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Jackett.Common/Indexers/BeyondHDAPI.cs b/src/Jackett.Common/Indexers/BeyondHDAPI.cs index cb352e3f5..40c4b74e8 100644 --- a/src/Jackett.Common/Indexers/BeyondHDAPI.cs +++ b/src/Jackett.Common/Indexers/BeyondHDAPI.cs @@ -202,6 +202,9 @@ namespace Jackett.Common.Indexers if (!string.IsNullOrEmpty(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.UploadVolumeFactor = 1;