Specific Subtitle tags (such as nlsub) can now be whitelisted and will be downloaded.

Fixes #540 and fixes a lot of other requests.
This commit is contained in:
Leonardo Galli
2017-04-10 11:41:08 +02:00
parent 7066b078ab
commit c17deb7d92
6 changed files with 49 additions and 3 deletions

View File

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