From da1ba64bd2325ecde6a3e65c75e8c390509f0172 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 28 Nov 2023 06:54:47 -0800 Subject: [PATCH] skip bookmarks if split (#620) --- kindlecomicconverter/comic2ebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index 7007bb1d..78e4eebb 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -728,7 +728,7 @@ def getComicInfo(path, originalpath): options.authors.sort() else: options.authors = ['KCC'] - if xml.data['Bookmarks']: + if xml.data['Bookmarks'] and options.batchsplit == 0: options.chapters = xml.data['Bookmarks'] if xml.data['Summary']: options.summary = hescape(xml.data['Summary'])