mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-19 11:20:49 +02: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 @@ private IEnumerable<IndexerRequest> GetPagedRequests(string term, int[] categori
|
|||
{ "searchtags", "" },
|
||||
{ "tags_type", "0" },
|
||||
{ "action", "basic" },
|
||||
{ "searchstr", term }
|
||||
{ "searchstr", term.Replace(".", " ") }
|
||||
};
|
||||
|
||||
var catList = Capabilities.Categories.MapTorznabCapsToTrackers(categories);
|
||||
|
|
|
|||
Loading…
Reference in a new issue