diff --git a/AppScaffolding/AppScaffolding.csproj b/AppScaffolding/AppScaffolding.csproj index ff819af7..19333d12 100644 --- a/AppScaffolding/AppScaffolding.csproj +++ b/AppScaffolding/AppScaffolding.csproj @@ -3,7 +3,7 @@ net6.0-windows - 6.8.1.1 + 6.8.2.1 diff --git a/FileLiberator/DownloadDecryptBook.cs b/FileLiberator/DownloadDecryptBook.cs index cd092fb9..ef4b932b 100644 --- a/FileLiberator/DownloadDecryptBook.cs +++ b/FileLiberator/DownloadDecryptBook.cs @@ -132,12 +132,6 @@ namespace FileLiberator abDownloader = converter; } - abDownloader - = Configuration.Instance.SplitFilesByChapter ? new AaxcDownloadMultiConverter( - outFileName, cacheDir, audiobookDlLic, outputFormat, - AudibleFileStorage.Audio.CreateMultipartRenamerFunc(libraryBook) - ) - : new AaxcDownloadSingleConverter(outFileName, cacheDir, audiobookDlLic, outputFormat); abDownloader.DecryptProgressUpdate += (_, progress) => OnStreamingProgressChanged(progress); abDownloader.DecryptTimeRemaining += (_, remaining) => OnStreamingTimeRemaining(remaining); abDownloader.RetrievedTitle += (_, title) => OnTitleDiscovered(title);