mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 12:46:23 +00:00
torrentcsv: keyword-less search fix. resolves #6896
the anything mask has changed from * to %
This commit is contained in:
parent
5405405d1a
commit
02fc8cee0e
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +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 = "*";
|
||||
if (string.IsNullOrEmpty(searchString)) searchString = "%";
|
||||
|
||||
var queryCollection = new NameValueCollection ();
|
||||
|
||||
|
|
Loading…
Reference in a new issue