metadata api fix

This commit is contained in:
Blacktwin 2018-11-18 16:17:31 -05:00
parent b5c40b29d2
commit 27db3a6eaa

View File

@ -21,7 +21,9 @@ class METAINFO(object):
def __init__(self, data=None):
d = data or {}
self.title = d['title']
self.file = d['file']
media_info = d['media_info'][0]
parts = media_info['parts'][0]
self.file = parts['file']
self.media_type = d['media_type']
self.grandparent_title = d['grandparent_title']
@ -37,7 +39,7 @@ def get_metadata(rating_key):
r = requests.get(TAUTULLI_URL.rstrip('/') + '/api/v2', params=payload)
response = r.json()
res_data = response['response']['data']['metadata']
res_data = response['response']['data']
return METAINFO(data=res_data)
except Exception as e: