Added option to not auto download propers

This commit is contained in:
Mark McDowall 2013-08-11 23:00:40 -07:00
parent 5b25f9c799
commit a4d6851be1
8 changed files with 56 additions and 5 deletions

View file

@ -251,6 +251,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("RssSyncInterval", value); }
}
public Boolean AutoDownloadPropers
{
get { return GetValueBoolean("AutoDownloadPropers", true); }
set { SetValue("AutoDownloadPropers", value); }
}
private string GetValue(string key)
{
return GetValue(key, String.Empty);