From 30b11bce98b3b27618551b729963ca51db8d7eee Mon Sep 17 00:00:00 2001 From: Jonathan Wong Date: Wed, 25 Nov 2015 19:13:08 -0800 Subject: [PATCH] Actually add video and audio decision to notifications --- plexpy/notification_handler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plexpy/notification_handler.py b/plexpy/notification_handler.py index 397f786b..4dab68dc 100644 --- a/plexpy/notification_handler.py +++ b/plexpy/notification_handler.py @@ -425,6 +425,8 @@ def build_notify_text(session=None, timeline=None, state=None): 'season_num00': metadata['parent_index'].zfill(2), 'episode_num': metadata['index'].zfill(1), 'episode_num00': metadata['index'].zfill(2), + 'video_decision': video_decision, + 'audio_decision': audio_decision, 'transcode_decision': transcode_decision, 'year': metadata['year'], 'studio': metadata['studio'],