diff --git a/src/Jackett.Common/Indexers/Abstract/GazelleTracker.cs b/src/Jackett.Common/Indexers/Abstract/GazelleTracker.cs index 43a4382dd..6e278f595 100644 --- a/src/Jackett.Common/Indexers/Abstract/GazelleTracker.cs +++ b/src/Jackett.Common/Indexers/Abstract/GazelleTracker.cs @@ -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); }