From dcad3017d3efcb62f08bfffb4fb2c3763fc096f2 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sat, 16 May 2020 16:11:25 -0700 Subject: [PATCH] Fix get_history returning incorrect title (Fixes Tautulli/Tautulli-Issues#244) --- plexpy/datafactory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/datafactory.py b/plexpy/datafactory.py index 0bc364fe..b09423ea 100644 --- a/plexpy/datafactory.py +++ b/plexpy/datafactory.py @@ -248,7 +248,7 @@ 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'], + 'title': item['title'], 'parent_title': item['parent_title'], 'grandparent_title': item['grandparent_title'], 'original_title': item['original_title'],