mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-15 21:14:32 +01:00
Fixed: (BeyondHD) Searching ImdbId has priority over TmdbId.
This commit is contained in:
parent
b747d0a321
commit
6dd354bf1a
1 changed files with 1 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue