mirror of
https://github.com/Readarr/Readarr
synced 2026-02-13 10:11:54 +01:00
Fix parameters generation in FileListRequestGenerator
This commit is contained in:
parent
5587af7806
commit
7e0eca5657
1 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ public IndexerPageableRequestChain GetSearchRequests(BookSearchCriteria searchCr
|
|||
{
|
||||
var pageableRequests = new IndexerPageableRequestChain();
|
||||
|
||||
pageableRequests.Add(GetRequest("search-torrents", Settings.Categories, string.Format(" & type=name&query={0}+{1}", Uri.EscapeDataString(searchCriteria.AuthorQuery.Trim()), Uri.EscapeDataString(searchCriteria.BookQuery.Trim()))));
|
||||
pageableRequests.Add(GetRequest("search-torrents", Settings.Categories, string.Format("&type=name&query={0}+{1}", Uri.EscapeDataString(searchCriteria.AuthorQuery.Trim()), Uri.EscapeDataString(searchCriteria.BookQuery.Trim()))));
|
||||
|
||||
return pageableRequests;
|
||||
}
|
||||
|
|
@ -32,7 +32,7 @@ public IndexerPageableRequestChain GetSearchRequests(AuthorSearchCriteria search
|
|||
{
|
||||
var pageableRequests = new IndexerPageableRequestChain();
|
||||
|
||||
pageableRequests.Add(GetRequest("search-torrents", Settings.Categories, string.Format(" & type=name&query={0}", Uri.EscapeDataString(searchCriteria.AuthorQuery.Trim()))));
|
||||
pageableRequests.Add(GetRequest("search-torrents", Settings.Categories, string.Format("&type=name&query={0}", Uri.EscapeDataString(searchCriteria.AuthorQuery.Trim()))));
|
||||
|
||||
return pageableRequests;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue