mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
XSpeeds: fix empty search
This commit is contained in:
@@ -271,11 +271,13 @@ namespace Jackett.Common.Indexers
|
|||||||
//if (query.IsTest || !string.IsNullOrWhiteSpace(searchString))
|
//if (query.IsTest || !string.IsNullOrWhiteSpace(searchString))
|
||||||
if (true)
|
if (true)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
if (searchString.Length < 3 && !query.IsTest)
|
if (searchString.Length < 3 && !query.IsTest)
|
||||||
{
|
{
|
||||||
OnParseError("", new Exception("Minimum search length is 3"));
|
OnParseError("", new Exception("Minimum search length is 3"));
|
||||||
return releases;
|
return releases;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
var searchParams = new Dictionary<string, string> {
|
var searchParams = new Dictionary<string, string> {
|
||||||
{ "do", "search" },
|
{ "do", "search" },
|
||||||
{ "keywords", searchString },
|
{ "keywords", searchString },
|
||||||
|
Reference in New Issue
Block a user