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

based on jackett 22efff93e7f1df858b341b3c2756d8204cae6f4a
pull/903/head
bakerboy448 2 years ago committed by Qstick
parent 83ca724120
commit 75792c0760

@ -148,7 +148,7 @@ namespace NzbDrone.Core.Indexers.Definitions
{ "order_way", "desc" },
{ "action", "basic" },
{ "searchsubmit", "1" },
{ "searchstr", imdbId.IsNotNullOrWhiteSpace() ? imdbId : term }
{ "searchstr", imdbId.IsNotNullOrWhiteSpace() ? imdbId : term.Replace(".", " ") }
};
var catList = Capabilities.Categories.MapTorznabCapsToTrackers(categories);

Loading…
Cancel
Save