From bc7bf6b2692af74c126ae369d7564b30cf561ff6 Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 2 Feb 2023 22:11:58 -0600 Subject: [PATCH] Fixed: Ignore deleted books won't save Fixes #1505 --- src/NzbDrone.Core/Configuration/ConfigService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 936965534..85b8268e9 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -81,8 +81,8 @@ public bool IsDefined(string key) public bool AutoUnmonitorPreviouslyDownloadedBooks { - get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedTracks"); } - set { SetValue("AutoUnmonitorPreviouslyDownloadedTracks", value); } + get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedBooks"); } + set { SetValue("AutoUnmonitorPreviouslyDownloadedBooks", value); } } public int Retention