mirror of
https://github.com/Jackett/Jackett
synced 2025-02-23 14:51:01 +00:00
BaseIndexer: fix potato API
This commit is contained in:
parent
580eacdb18
commit
1b4826f966
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ namespace Jackett.Common.Indexers
|
|||
return false;
|
||||
if (caps.SupportsImdbSearch && query.IsImdbQuery)
|
||||
return true;
|
||||
else if(!caps.SupportsImdbSearch && query.IsImdbQuery)
|
||||
else if(!caps.SupportsImdbSearch && query.IsImdbQuery && query.QueryType != "TorrentPotato") // potato query should always contain imdb+search term
|
||||
return false;
|
||||
if (caps.SearchAvailable && query.IsSearch)
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue