mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-23 16:51:41 +01:00
Image Handling: Fix tidy cover caching when no cover.
This commit is contained in:
parent
eac5acfbfa
commit
aaa0fa613a
1 changed files with 4 additions and 1 deletions
|
|
@ -689,7 +689,10 @@ class ImageStore:
|
|||
|
||||
# cover plus list
|
||||
def get_imgs(self):
|
||||
return [ self.cover ] + [ x for x in self.infos if x['actuallyused'] ]
|
||||
retval = [ x for x in self.infos if x['actuallyused'] ]
|
||||
if self.cover:
|
||||
retval.insert(0,self.cover)
|
||||
return retval
|
||||
|
||||
def debug_out(self):
|
||||
# logger.debug(self.fails_index)
|
||||
|
|
|
|||
Loading…
Reference in a new issue