From 66a0f953b3c8c8f19767f0ac554c4b79a44247b8 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 16 Feb 2020 19:56:27 -0800 Subject: [PATCH] Fix missing channel info for Live TV history on info page --- plexpy/datafactory.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plexpy/datafactory.py b/plexpy/datafactory.py index b0d3f118..123ae441 100644 --- a/plexpy/datafactory.py +++ b/plexpy/datafactory.py @@ -1057,7 +1057,10 @@ class DataFactory(object): 'video_framerate': item['video_framerate'], 'audio_codec': item['audio_codec'], 'audio_channels': item['audio_channels'], - 'live': item['live'] + 'live': item['live'], + 'channel_call_sign': item['channel_call_sign'], + 'channel_identifier': item['channel_identifier'], + 'channel_thumb': item['channel_thumb'] }] metadata = {'media_type': item['media_type'],