Backlog searching will be disabled by default. Option is available in Settings/Misc

This commit is contained in:
Mark McDowall
2012-01-14 16:01:51 -08:00
parent 3e9593ba3b
commit 11b6720cd1
8 changed files with 92 additions and 2 deletions

View File

@@ -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);