From 7a3ed262b11d35c8239ed37394c0f5084b4be3f0 Mon Sep 17 00:00:00 2001 From: Vinh Quang Tran Date: Mon, 10 Mar 2025 08:22:34 +0900 Subject: [PATCH] fix: disabled overriding title (#857) --- kindlecomicconverter/comic2ebook.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index e28ddcf..f0f96d1 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -741,9 +741,7 @@ def getComicInfo(path, originalpath): except Exception: os.remove(xmlPath) return - if xml.data['Title']: - options.title = hescape(xml.data['Title']) - elif defaultTitle: + if defaultTitle: if xml.data['Series']: options.title = hescape(xml.data['Series']) if xml.data['Volume']: