torrentscsv: site no longer accepts empty search query

so we supply an * instead.
This commit is contained in:
Garfield69 2019-11-10 18:04:36 +13:00
parent 4756be5d60
commit 51c72faf68
1 changed files with 1 additions and 0 deletions

View File

@ -70,6 +70,7 @@ namespace Jackett.Common.Indexers {
public async Task<IEnumerable<ReleaseInfo>> PerformQuery (TorznabQuery query, int attempts) {
var releases = new List<ReleaseInfo> ();
var searchString = query.GetQueryString ();
if (string.IsNullOrEmpty(searchString)) searchString = "*";
var queryCollection = new NameValueCollection ();