Fix potential error with checksum

This commit is contained in:
angelblue05 2018-10-01 21:24:08 -05:00
parent c827ce1926
commit c250457c87
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class Objects(object):
self.mapped_item['ProviderName'] = self.objects.get('%sProviderName' % mapping_name)
if not mapping_name.startswith('Browse'):
if not mapping_name.startswith('Browse') and not mapping_name.startswith('Artwork'):
self.mapped_item['Checksum'] = json.dumps(item['UserData'])
return self.mapped_item