mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-31 04:47:27 +01:00
Fixed: (HDSpace) Replace Periods for Space in Search Term
based on jackett 22efff93e7f1df858b341b3c2756d8204cae6f4a
This commit is contained in:
parent
75792c0760
commit
a0cbe1de5d
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(string term, int[] categori
|
|||
else
|
||||
{
|
||||
queryCollection.Add("options", "0");
|
||||
queryCollection.Add("search", term);
|
||||
queryCollection.Add("search", term.Replace(".", " "));
|
||||
}
|
||||
|
||||
searchUrl += queryCollection.GetQueryString();
|
||||
|
|
|
|||
Loading…
Reference in a new issue