mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
Fixed: (BB) Remove '.' from Search String
based on jackett fbb1f15d7014b2d8c23c6ee94c2bcf37612066db
This commit is contained in:
parent
3610becc64
commit
46401ee187
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue