mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04:00
Fixed: (Gazelle) Replace Periods for Space in Search Term
based on Jackett b8b816f953ad9d0508f95a9c31f9ff4385ebdd73
This commit is contained in:
parent
a0cbe1de5d
commit
01cc9b3d07
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ namespace NzbDrone.Core.Indexers.Gazelle
|
|||
|
||||
if (!string.IsNullOrWhiteSpace(searchString))
|
||||
{
|
||||
parameters += string.Format("&searchstr={0}", searchString);
|
||||
parameters += string.Format("&searchstr={0}", searchString.Replace(".", " "));
|
||||
}
|
||||
|
||||
if (categories != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue