mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (Anthelion) Replace Periods for Space in Search Term
based on jackett 22efff93e7f1df858b341b3c2756d8204cae6f4a
This commit is contained in:
@@ -148,7 +148,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||||||
{ "order_way", "desc" },
|
{ "order_way", "desc" },
|
||||||
{ "action", "basic" },
|
{ "action", "basic" },
|
||||||
{ "searchsubmit", "1" },
|
{ "searchsubmit", "1" },
|
||||||
{ "searchstr", imdbId.IsNotNullOrWhiteSpace() ? imdbId : term }
|
{ "searchstr", imdbId.IsNotNullOrWhiteSpace() ? imdbId : term.Replace(".", " ") }
|
||||||
};
|
};
|
||||||
|
|
||||||
var catList = Capabilities.Categories.MapTorznabCapsToTrackers(categories);
|
var catList = Capabilities.Categories.MapTorznabCapsToTrackers(categories);
|
||||||
|
Reference in New Issue
Block a user