mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-03-05 13:40:08 -05:00
Fixed: (Gazelle) Replace Periods for Space in Search Term
based on Jackett b8b816f953ad9d0508f95a9c31f9ff4385ebdd73
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user