From a63d9e3ad0f38f65ba52d3945cd159a942414c46 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Sun, 27 Jul 2025 16:55:09 -0700 Subject: [PATCH] fix cbz split --- kindlecomicconverter/comic2ebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index d4083f5..4c8a598 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -1491,7 +1491,7 @@ def makeBook(source, qtgui=None): imgDirectoryProcessing(os.path.join(path, "OEBPS", "Images")) if GUI: GUI.progressBarTick.emit('1') - if options.batchsplit > 0: + if options.batchsplit > 0 or options.targetsize: tomes = chunk_directory(path) else: tomes = [path]