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

based on jackett 22efff93e7f1df858b341b3c2756d8204cae6f4a
This commit is contained in:
bakerboy448 2022-02-22 10:39:03 -06:00 committed by Qstick
parent 83ca724120
commit 75792c0760

View file

@ -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);