mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 02:52:20 -05:00
Bugfix for XBMC 12+ metadata parser
This commit is contained in:
parent
b435fc9d71
commit
3bdebb4e6d
@ -126,7 +126,7 @@ class XBMC_12PlusMetadata(generic.GenericMetadata):
|
||||
|
||||
# check for title and id
|
||||
try:
|
||||
if getattr(myShow, 'seriesname', None) is None or getattr(myShow, 'id') is None:
|
||||
if getattr(myShow, 'seriesname', None) is None or getattr(myShow, 'id', None) is None:
|
||||
logger.log(u"Incomplete info for show with id " + str(show_ID) + " on " + show_obj.indexer + ", skipping it", logger.ERROR)
|
||||
return False
|
||||
except indexer_exceptions.indexer_attributenotfound:
|
||||
|
Loading…
Reference in New Issue
Block a user