mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 07:46:07 -07:00
Fix MusicBrainzlookup missing artist
This commit is contained in:
parent
89c1ec8d21
commit
28e48e6b2f
1 changed files with 1 additions and 1 deletions
|
@ -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']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue