Skip to content

Commit

Permalink
skip bookmarks if split (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
axu2 authored Nov 28, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 6dcaf9a commit da1ba64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kindlecomicconverter/comic2ebook.py
Original file line number Diff line number Diff line change
@@ -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'])

0 comments on commit da1ba64

Please sign in to comment.