From 53eebcd6bac066a69588e66dae1717ea157a7a6a Mon Sep 17 00:00:00 2001 From: MBucari Date: Fri, 25 Jul 2025 16:02:28 -0600 Subject: [PATCH] Use single file downloader/namer if file has only 1 chapter --- Source/FileLiberator/DownloadDecryptBook.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/FileLiberator/DownloadDecryptBook.cs b/Source/FileLiberator/DownloadDecryptBook.cs index cd143a7a..de4d35d1 100644 --- a/Source/FileLiberator/DownloadDecryptBook.cs +++ b/Source/FileLiberator/DownloadDecryptBook.cs @@ -133,7 +133,7 @@ namespace FileLiberator else { AaxcDownloadConvertBase converter - = dlOptions.Config.SplitFilesByChapter ? + = dlOptions.Config.SplitFilesByChapter && dlOptions.ChapterInfo.Count > 1 ? new AaxcDownloadMultiConverter(outpoutDir, cacheDir, dlOptions) : new AaxcDownloadSingleConverter(outpoutDir, cacheDir, dlOptions);