mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 23:22:46 +00:00
GazelleTracker: add support for IMDB search
This commit is contained in:
parent
4942d429f0
commit
7193d6d28f
1 changed files with 6 additions and 1 deletions
|
@ -100,7 +100,12 @@ namespace Jackett.Indexers.Abstract
|
|||
queryCollection.Add("order_by", "time");
|
||||
queryCollection.Add("order_way", "desc");
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(searchString))
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(query.ImdbID))
|
||||
{
|
||||
queryCollection.Add("cataloguenumber", query.ImdbID);
|
||||
}
|
||||
else if (!string.IsNullOrWhiteSpace(searchString))
|
||||
{
|
||||
queryCollection.Add("searchstr", searchString);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue