mirror of
https://github.com/evilhero/mylar
synced 2025-02-13 17:54:29 +00:00
FIX:(#1485) URLs of issue covers were saving main image for each issue
This commit is contained in:
parent
8e8b20ec08
commit
64658f2201
1 changed files with 2 additions and 2 deletions
|
@ -492,12 +492,12 @@ def GetIssuesInfo(comicid, dom, arcid=None):
|
|||
logger.fdebug('No Issue Number available - Trade Paperbacks, Graphic Novels and Compendiums are not supported as of yet.')
|
||||
|
||||
try:
|
||||
tempissue['ComicImage'] = dom.getElementsByTagName('small_url')[0].firstChild.wholeText
|
||||
tempissue['ComicImage'] = subtrack.getElementsByTagName('small_url')[0].firstChild.wholeText
|
||||
except:
|
||||
tempissue['ComicImage'] = 'None'
|
||||
|
||||
try:
|
||||
tempissue['ComicImageALT'] = dom.getElementsByTagName('medium_url')[0].firstChild.wholeText
|
||||
tempissue['ComicImageALT'] = subtrack.getElementsByTagName('medium_url')[0].firstChild.wholeText
|
||||
except:
|
||||
tempissue['ComicImageALT'] = 'None'
|
||||
|
||||
|
|
Loading…
Reference in a new issue