Fixed issues
This commit is contained in:
parent
5e349c6662
commit
5b7cde2a9e
@ -155,7 +155,7 @@ namespace FileLiberator
|
|||||||
foreach (var f in sortedFiles)
|
foreach (var f in sortedFiles)
|
||||||
{
|
{
|
||||||
var dest
|
var dest
|
||||||
= f.Extension.Equals($".{musicFileExt}", StringComparison.OrdinalIgnoreCase)
|
= AudibleFileStorage.Audio.IsFileTypeMatch(f)//f.Extension.Equals($".{musicFileExt}", StringComparison.OrdinalIgnoreCase)
|
||||||
? Path.Join(destinationDir, f.Name)
|
? Path.Join(destinationDir, f.Name)
|
||||||
// non-audio filename: safetitle_limit50char + " [" + productId + "][" + audio_ext + "]." + non_audio_ext
|
// non-audio filename: safetitle_limit50char + " [" + productId + "][" + audio_ext + "]." + non_audio_ext
|
||||||
: FileUtility.GetValidFilename(destinationDir, product.Title, f.Extension, product.AudibleProductId, musicFileExt);
|
: FileUtility.GetValidFilename(destinationDir, product.Title, f.Extension, product.AudibleProductId, musicFileExt);
|
||||||
|
|||||||
@ -102,7 +102,7 @@ namespace FileManager
|
|||||||
set => persistentDictionary.SetNonString(nameof(DecryptToLossy), value);
|
set => persistentDictionary.SetNonString(nameof(DecryptToLossy), value);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Description("Decrypt to lossy format?")]
|
[Description("Split my books into multi files by cahpter")]
|
||||||
public bool SplitFilesByChapter
|
public bool SplitFilesByChapter
|
||||||
{
|
{
|
||||||
get => persistentDictionary.GetNonString<bool>(nameof(SplitFilesByChapter));
|
get => persistentDictionary.GetNonString<bool>(nameof(SplitFilesByChapter));
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user