Added the ability to auto-ignore episodes for files that are deleted, good for people that delete after watching. Option is not exposed in the UI and is disabled by default (obviously).

This commit is contained in:
Mark McDowall 2012-01-15 20:12:47 -08:00
commit 218059e08d
6 changed files with 108 additions and 1 deletions

View file

@ -402,6 +402,12 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("EnableBacklogSearching", value); }
}
public virtual bool AutoIgnorePreviouslyDownloadedEpisodes
{
get { return GetValueBoolean("AutoIgnorePreviouslyDownloadedEpisodes"); }
set { SetValue("AutoIgnorePreviouslyDownloadedEpisodes", value); }
}
private string GetValue(string key)
{
return GetValue(key, String.Empty);