mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-10 09:43:58 +00:00
Merging branch lp:~chad-wilson/picard/main
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -91,11 +91,11 @@ class Album(DataObject, Item):
|
||||
|
||||
# 'Translate' artist name
|
||||
if self.config.setting['translate_artist_names']:
|
||||
m['albumartist'] = m['artist'] = translate_artist(m['artist'], m['artistsort'])
|
||||
m['albumartist'] = translate_artist(m['albumartist'], m['albumartistsort'])
|
||||
|
||||
# Custom VA name
|
||||
if m['musicbrainz_artistid'] == VARIOUS_ARTISTS_ID:
|
||||
m['albumartistsort'] = m['artistsort'] = m['albumartist'] = m['artist'] = self.config.setting['va_name']
|
||||
if m['musicbrainz_albumartistid'] == VARIOUS_ARTISTS_ID:
|
||||
m['albumartistsort'] = m['albumartist'] = self.config.setting['va_name']
|
||||
|
||||
ignore_tags = [s.strip() for s in self.config.setting['ignore_tags'].split(',')]
|
||||
first_artist = None
|
||||
|
||||
Reference in New Issue
Block a user