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

View File

@@ -37,6 +37,7 @@ namespace NzbDrone.Core.Configuration
PriorityType NzbgetOlderTvPriority { get; set; }
string ReleaseRestrictions { get; set; }
Int32 RssSyncInterval { get; set; }
Boolean AutoDownloadPropers { get; set; }
void SaveValues(Dictionary<string, object> configValues);
}
}