mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04: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 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||
else
|
||||
{
|
||||
queryCollection.Add("options", "0");
|
||||
queryCollection.Add("search", term);
|
||||
queryCollection.Add("search", term.Replace(".", " "));
|
||||
}
|
||||
|
||||
searchUrl += queryCollection.GetQueryString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue