Fixed: (BB) Remove '.' from Search String

based on jackett fbb1f15d7014b2d8c23c6ee94c2bcf37612066db
This commit is contained in:
bakerboy448 2021-12-13 11:30:13 -06:00
parent 3610becc64
commit 46401ee187

View file

@ -178,7 +178,7 @@ namespace NzbDrone.Core.Indexers.Definitions
{ "searchtags", "" },
{ "tags_type", "0" },
{ "action", "basic" },
{ "searchstr", term }
{ "searchstr", term.Replace(".", " ") }
};
var catList = Capabilities.Categories.MapTorznabCapsToTrackers(categories);