From 3dcbcf42edf8b59d2434ec832b25c939e2b31e8c Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Mon, 25 Apr 2022 22:21:36 -0400 Subject: [PATCH] Fix 2 for issue #202 --- AppScaffolding/AppScaffolding.csproj | 2 +- FileLiberator/DownloadDecryptBook.cs | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) 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);