Add show and episode title to get_history API

This commit is contained in:
JonnyWong16 2016-11-29 20:54:27 -08:00
commit 655f1c249e
2 changed files with 34 additions and 24 deletions

View file

@ -80,7 +80,9 @@ class DataFactory(object):
'session_history_metadata.parent_rating_key',
'session_history_metadata.grandparent_rating_key',
'session_history_metadata.full_title',
'session_history_metadata.title',
'session_history_metadata.parent_title',
'session_history_metadata.grandparent_title',
'session_history_metadata.year',
'session_history_metadata.media_index',
'session_history_metadata.parent_media_index',
@ -124,7 +126,9 @@ class DataFactory(object):
'parent_rating_key',
'grandparent_rating_key',
'full_title',
'title',
'parent_title',
'grandparent_title',
'year',
'media_index',
'parent_media_index',
@ -217,7 +221,9 @@ class DataFactory(object):
'parent_rating_key': item['parent_rating_key'],
'grandparent_rating_key': item['grandparent_rating_key'],
'full_title': item['full_title'],
'title': item['parent_title'],
'parent_title': item['parent_title'],
'grandparent_title': item['grandparent_title'],
'year': item['year'],
'media_index': item['media_index'],
'parent_media_index': item['parent_media_index'],