Fixed: (BeyondHD) Searching ImdbId has priority over TmdbId.

This commit is contained in:
Bogdan 2023-07-17 19:39:51 +03:00
parent b747d0a321
commit 6dd354bf1a

View file

@ -89,8 +89,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(string term, int[] categori
{
body.Add("imdb_id", imdbId);
}
if (tmdbId > 0)
else if (tmdbId > 0)
{
body.Add("tmdb_id", tmdbId);
}