XSpeeds: fix empty search

This commit is contained in:
kaso17 2019-01-15 15:43:50 +01:00
parent d8d8030644
commit 35b8f726fb
1 changed files with 2 additions and 0 deletions

View File

@ -271,11 +271,13 @@ namespace Jackett.Common.Indexers
//if (query.IsTest || !string.IsNullOrWhiteSpace(searchString))
if (true)
{
/*
if (searchString.Length < 3 && !query.IsTest)
{
OnParseError("", new Exception("Minimum search length is 3"));
return releases;
}
*/
var searchParams = new Dictionary<string, string> {
{ "do", "search" },
{ "keywords", searchString },