Fix MusicBrainzlookup missing artist

This commit is contained in:
JonnyWong16 2020-04-18 19:24:20 -07:00
parent 89c1ec8d21
commit 28e48e6b2f
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -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']