mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-06 07:47:17 +01: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 @@ private string GetBasicSearchParameters(string searchTerm, int[] categories)
|
|||
|
||||
if (!string.IsNullOrWhiteSpace(searchString))
|
||||
{
|
||||
parameters += string.Format("&searchstr={0}", searchString);
|
||||
parameters += string.Format("&searchstr={0}", searchString.Replace(".", " "));
|
||||
}
|
||||
|
||||
if (categories != null)
|
||||
|
|
|
|||
Loading…
Reference in a new issue