Display the artist credit when matching albums if the user prefers artist credits.

This commit is contained in:
David Logie 2018-06-11 13:37:10 +01:00
parent f8d37b6363
commit 33ddfe4145

View file

@ -256,6 +256,9 @@ def show_change(cur_artist, cur_album, match):
# Hide artists for VA releases.
artist_l, artist_r = u'', u''
if config['artist_credit']:
artist_r = match.info.artist_credit
artist_l, artist_r = ui.colordiff(artist_l, artist_r)
album_l, album_r = ui.colordiff(album_l, album_r)