Allow Hardcoded subs to be downloaded still.

This commit is contained in:
Leonardo Galli
2017-04-10 11:17:31 +02:00
parent b4bb8875d3
commit 7066b078ab
5 changed files with 45 additions and 2 deletions

View File

@@ -190,6 +190,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("EnableCompletedDownloadHandling", value); }
}
public bool AllowHardcodedSubs
{
get { return GetValueBoolean("AllowHardcodedSubs", false); }
set { SetValue("AllowHardcodedSubs", value); }
}
public bool RemoveCompletedDownloads
{
get { return GetValueBoolean("RemoveCompletedDownloads", false); }