mirror of
https://github.com/ciromattia/kcc
synced 2025-12-13 01:36:27 +00:00
Override book's title if Title is set in XML (#532)
* Allow overriding title if it is set in XML
This commit is contained in:
@@ -695,7 +695,9 @@ def getComicInfo(path, originalpath):
|
||||
os.remove(xmlPath)
|
||||
return
|
||||
options.authors = []
|
||||
if defaultTitle:
|
||||
if xml.data['Title']:
|
||||
options.title = hescape(xml.data['Title'])
|
||||
elif defaultTitle:
|
||||
if xml.data['Series']:
|
||||
options.title = hescape(xml.data['Series'])
|
||||
if xml.data['Volume']:
|
||||
|
||||
Reference in New Issue
Block a user