mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 07:10:44 +00:00
XSpeeds: fix empty search
This commit is contained in:
parent
d8d8030644
commit
35b8f726fb
1 changed files with 2 additions and 0 deletions
|
@ -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 },
|
||||
|
|
Loading…
Reference in a new issue