mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 14:14:25 +00:00
partis: fix keywordless search. resolves #13555
This commit is contained in:
parent
9658fa899a
commit
7361aa7c6f
1 changed files with 2 additions and 1 deletions
|
@ -161,7 +161,8 @@ namespace Jackett.Common.Indexers
|
|||
var categ = string.Join(",", catList);
|
||||
|
||||
// create GET request - search URI
|
||||
queryCollection.Add("q", searchString);
|
||||
if (!string.IsNullOrEmpty(searchString))
|
||||
queryCollection.Add("q", searchString);
|
||||
queryCollection.Add("cat", categ.TrimStart(','));
|
||||
|
||||
// concatenate base search url with query
|
||||
|
|
Loading…
Add table
Reference in a new issue