Fixed: (Gazelle) Replace Periods for Space in Search Term

based on Jackett b8b816f953ad9d0508f95a9c31f9ff4385ebdd73
pull/903/head
bakerboy448 2 years ago committed by Qstick
parent a0cbe1de5d
commit 01cc9b3d07

@ -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…
Cancel
Save