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

@ -83,11 +83,11 @@ namespace FileManager
set => persistentDictionary.Set(nameof(DecryptInProgressEnum), value);
}
[Description("Download chapter titles from Audible?")]
public bool DownloadChapters
[Description("Allow Libation for fix up audiobook metadata?")]
public bool AllowLibationFixup
{
get => persistentDictionary.Get<bool>(nameof(DownloadChapters));
set => persistentDictionary.Set(nameof(DownloadChapters), value);
get => persistentDictionary.Get<bool>(nameof(AllowLibationFixup));
set => persistentDictionary.Set(nameof(AllowLibationFixup), value);
}
// note: any potential file manager static ctors can't compensate if storage dir is changed at run time via settings. this is partly bad architecture. but the side effect is desirable. if changing LibationFiles location: restart app