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