New: Explicit toggle for importing extra files

This commit is contained in:
Mark McDowall 2017-03-25 09:13:28 -07:00
parent db9d601115
commit 6aaefae2d5
8 changed files with 113 additions and 3 deletions

View file

@ -203,6 +203,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("EnableMediaInfo", value); }
}
public bool ImportExtraFiles
{
get { return GetValueBoolean("ImportExtraFiles", false); }
set { SetValue("ImportExtraFiles", value); }
}
public string ExtraFileExtensions
{
get { return GetValue("ExtraFileExtensions", ""); }