mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Backlog searching will be disabled by default. Option is available in Settings/Misc
This commit is contained in:
parent
3e9593ba3b
commit
11b6720cd1
8 changed files with 92 additions and 2 deletions
|
@ -396,6 +396,12 @@ namespace NzbDrone.Core.Providers.Core
|
|||
set { SetValue("ProwlPriority", value); }
|
||||
}
|
||||
|
||||
public virtual bool EnableBacklogSearching
|
||||
{
|
||||
get { return GetValueBoolean("EnableBacklogSearching"); }
|
||||
set { SetValue("EnableBacklogSearching", value); }
|
||||
}
|
||||
|
||||
private string GetValue(string key)
|
||||
{
|
||||
return GetValue(key, String.Empty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue