From 28e48e6b2ff3de8f812a18d7862b4b762749306c Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sat, 18 Apr 2020 19:24:20 -0700 Subject: [PATCH] Fix MusicBrainzlookup missing artist --- plexpy/notification_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/notification_handler.py b/plexpy/notification_handler.py index ac2fd201..a042d058 100644 --- a/plexpy/notification_handler.py +++ b/plexpy/notification_handler.py @@ -673,7 +673,7 @@ def build_media_notify_params(notify_action=None, session=None, timeline=None, m tracks = notify_params['children_count'] else: musicbrainz_type = 'recording' - artist = notify_params['original_title'] + artist = notify_params['original_title'] or notify_params['grandparent_title'] release = notify_params['parent_title'] recording = notify_params['title'] tracks = notify_params['children_count']