diff --git a/src/Jackett.Common/Indexers/Norbits.cs b/src/Jackett.Common/Indexers/Norbits.cs index c8a4c8083..1349cdb9e 100644 --- a/src/Jackett.Common/Indexers/Norbits.cs +++ b/src/Jackett.Common/Indexers/Norbits.cs @@ -422,7 +422,7 @@ namespace Jackett.Common.Indexers // Building our tracker query parameters.Add("incldead", "1"); - parameters.Add("fullsearch", "0"); + parameters.Add("fullsearch", ConfigData.UseFullSearch.Value ? "1" : "0"); parameters.Add("scenerelease", "0"); // If search term provided diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs index 7989aee5a..5ecb55a19 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNorbits.cs @@ -7,6 +7,7 @@ namespace Jackett.Common.Models.IndexerConfig.Bespoke public StringItem Password { get; private set; } public DisplayItem PagesWarning { get; private set; } public StringItem Pages { get; private set; } + public BoolItem UseFullSearch { get; private set; } public DisplayItem SecurityWarning { get; private set; } public BoolItem Latency { get; private set; } public BoolItem Browser { get; private set; } @@ -31,6 +32,7 @@ namespace Jackett.Common.Models.IndexerConfig.Bespoke Password = new StringItem { Name = "Password", Value = "" }; PagesWarning = new DisplayItem("Preferences Configuration (Tweak your search settings),

") { Name = "Preferences" }; Pages = new StringItem { Name = "Max Pages to Process (Required)", Value = "4" }; + UseFullSearch = new BoolItem { Name = "Enable search in description.", Value = false }; SecurityWarning = new DisplayItem("Security Configuration (Read this area carefully !),

") { Name = "Security" }; Latency = new BoolItem() { Name = "Latency Simulation (Optional)", Value = false }; Browser = new BoolItem() { Name = "Browser Simulation (Forced)", Value = true };