Use scene name for download client queue

#ND-136 fixed
New: Option to Scene name when adding NZBs to download client queue
This commit is contained in:
Mark McDowall
2013-01-22 21:08:21 -08:00
parent e2cc4ef4ea
commit 0b9a4e1a46
5 changed files with 26 additions and 1 deletions
@@ -534,6 +534,13 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("IgnoreArticlesWhenSortingSeries", value); }
}
public virtual Boolean DownloadClientUseSceneName
{
get { return GetValueBoolean("DownloadClientUseSceneName", false); }
set { SetValue("DownloadClientUseSceneName", value); }
}
private string GetValue(string key)
{
return GetValue(key, String.Empty);