From 09118b1ddf634adec35d213bb735604e80773a13 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Tue, 10 Jan 2023 10:13:47 -0500 Subject: [PATCH] nvm. I guess this has been default : true for a long time. Reverting --- Source/LibationFileManager/Configuration.PersistentSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/LibationFileManager/Configuration.PersistentSettings.cs b/Source/LibationFileManager/Configuration.PersistentSettings.cs index 1ddf2fde..0482a96a 100644 --- a/Source/LibationFileManager/Configuration.PersistentSettings.cs +++ b/Source/LibationFileManager/Configuration.PersistentSettings.cs @@ -188,7 +188,7 @@ namespace LibationFileManager public bool DownloadEpisodes { get => GetNonString(defaultValue: true); set => SetNonString(value); } [Description("Automatically run periodic scans in the background?")] - public bool AutoScan { get => GetNonString(defaultValue: false); set => SetNonString(value); } + public bool AutoScan { get => GetNonString(defaultValue: true); set => SetNonString(value); } [Description("Auto download books? After scan, download new books in 'checked' accounts.")] // poorly named setting. Should just be 'AutoDownload'. It is NOT episode specific