BaseIndexer: fix potato API

This commit is contained in:
kaso17 2018-04-25 20:35:35 +02:00
parent 580eacdb18
commit 1b4826f966
1 changed files with 1 additions and 1 deletions

View File

@ -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;