mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -07:00
Fix: Go to Settings -> Misc to set your preference for automatically ignoring deleted episodes (false by default).
This commit is contained in:
parent
1f24e87421
commit
6574a2b065
3 changed files with 11 additions and 0 deletions
|
@ -232,6 +232,7 @@ namespace NzbDrone.Web.Controllers
|
|||
{
|
||||
var model = new MiscSettingsModel();
|
||||
model.EnableBacklogSearching = _configProvider.EnableBacklogSearching;
|
||||
model.AutoIgnorePreviouslyDownloadedEpisodes = _configProvider.AutoIgnorePreviouslyDownloadedEpisodes;
|
||||
|
||||
return View(model);
|
||||
}
|
||||
|
@ -591,6 +592,7 @@ namespace NzbDrone.Web.Controllers
|
|||
if (ModelState.IsValid)
|
||||
{
|
||||
_configProvider.EnableBacklogSearching = data.EnableBacklogSearching;
|
||||
_configProvider.AutoIgnorePreviouslyDownloadedEpisodes = data.AutoIgnorePreviouslyDownloadedEpisodes;
|
||||
|
||||
return GetSuccessResult();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue