mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix potential error with checksum
This commit is contained in:
parent
c827ce1926
commit
c250457c87
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue