1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fix: Go to Settings -> Misc to set your preference for automatically ignoring deleted episodes (false by default).

This commit is contained in:
Mark McDowall
2012-02-27 22:06:02 -08:00
parent 1f24e87421
commit 6574a2b065
3 changed files with 11 additions and 0 deletions
+4
View File
@@ -11,5 +11,9 @@ namespace NzbDrone.Web.Models
[DisplayName("Enable Backlog Searching")]
[Description("Should NzbDrone try to download missing episodes automatically?")]
public bool EnableBacklogSearching { get; set; }
[DisplayName("Automatically Ignore Deleted Episodes")]
[Description("Should NzbDrone automatically ignore episodes that were deleted from disk?")]
public bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; }
}
}