NotUnpacking check added to episode import

Checks last write time when in working folder, should help with moving while unpacking
This commit is contained in:
Mark McDowall 2013-08-22 08:34:51 -07:00
commit 7771899e29
7 changed files with 134 additions and 1 deletions

View file

@ -258,6 +258,12 @@ namespace NzbDrone.Core.Configuration
set { SetValue("AutoDownloadPropers", value); }
}
public string DownloadClientWorkingFolders
{
get { return GetValue("DownloadClientWorkingFolders", "_UNPACK_|_FAILED_"); }
set { SetValue("DownloadClientWorkingFolders", value); }
}
private string GetValue(string key)
{
return GetValue(key, String.Empty);