Changed DownloadChapters setting to AllowLibationFixup.

This commit is contained in:
Michael Bucari-Tovo 2021-06-30 17:38:24 -06:00
parent 3af84af2e2
commit 6696317ae6
6 changed files with 21 additions and 42 deletions

View file

@ -60,7 +60,7 @@ namespace LibationLauncher
config.DownloadsInProgressEnum ??= "WinTemp";
config.DecryptInProgressEnum ??= "WinTemp";
config.Books ??= Configuration.AppDir;
config.DownloadChapters = true;
config.AllowLibationFixup = true;
};
// setupDialog.BasicBtn_Click += (_, __) => // no action needed
setupDialog.AdvancedBtn_Click += (_, __) => isAdvanced = true;
@ -235,9 +235,9 @@ namespace LibationLauncher
{
var persistentDictionary = new PersistentDictionary(Configuration.Instance.SettingsFilePath);
if (persistentDictionary.GetString("DownloadChapters") is null)
if (persistentDictionary.GetString("AllowLibationFixup") is null)
{
persistentDictionary.Set("DownloadChapters", true);
persistentDictionary.Set("AllowLibationFixup", true);
}
if (!File.Exists(AudibleApiStorage.AccountsSettingsFile))