1
0
Fork 0
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:
kaso17 2019-01-15 15:43:50 +01:00
parent d8d8030644
commit 35b8f726fb

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 },