torrentscsv: temporary fix for empty search #8587 (#8618)

This commit is contained in:
Diego Heras 2020-05-13 00:40:13 +02:00 committed by GitHub
parent fd7a47e45d
commit 700fef516a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ namespace Jackett.Common.Indexers
if (!string.IsNullOrWhiteSpace(searchString) && searchString.Length < 3)
return releases; // search needs at least 3 characters
if (string.IsNullOrEmpty(searchString))
searchString = DateTime.Now.Year.ToString();
searchString = "202"; // this search 2020 (yep, 2020 is not working)
var qc = new NameValueCollection
{