mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix minor bug in metadata processing that was preventing some feeds from downloading
This commit is contained in:
parent
7ff4adc4a3
commit
121d195aba
@ -93,7 +93,7 @@ class MetaInformation(object):
|
||||
self.tags += mi.tags
|
||||
self.tags = list(set(self.tags))
|
||||
|
||||
if hasattr(mi, 'cover_data') and mi.cover_data[0] is not None:
|
||||
if getattr(mi, 'cover_data', None) and mi.cover_data[0] is not None:
|
||||
self.cover_data = mi.cover_data
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user