diff --git a/plexpy/common.py b/plexpy/common.py index 88efa0b3..8ca6eeb0 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -354,6 +354,7 @@ NOTIFICATION_PARAMETERS = [ {'name': 'User', 'type': 'str', 'value': 'user', 'description': 'The friendly name of the user streaming.'}, {'name': 'Username', 'type': 'str', 'value': 'username', 'description': 'The username of the user streaming.'}, {'name': 'User Email', 'type': 'str', 'value': 'user_email', 'description': 'The email address of the user streaming.'}, + {'name': 'User Thumb', 'type': 'str', 'value': 'user_thumb', 'description': 'The profile picture URL of the user streaming.'}, {'name': 'Device', 'type': 'str', 'value': 'device', 'description': 'The type of client device being used for playback.'}, {'name': 'Platform', 'type': 'str', 'value': 'platform', 'description': 'The type of client platform being used for playback.'}, {'name': 'Product', 'type': 'str', 'value': 'product', 'description': 'The type of client product being used for playback.'}, diff --git a/plexpy/notification_handler.py b/plexpy/notification_handler.py index 04e78de1..ac2fd201 100644 --- a/plexpy/notification_handler.py +++ b/plexpy/notification_handler.py @@ -830,6 +830,7 @@ def build_media_notify_params(notify_action=None, session=None, timeline=None, m 'user': notify_params['friendly_name'], 'username': notify_params['user'], 'user_email': notify_params['email'], + 'user_thumb': notify_params['user_thumb'], 'device': notify_params['device'], 'platform': notify_params['platform'], 'product': notify_params['product'],