* morituri/common/program.py:
For Various Artists releases, fall back to the release artist if the track artist is None.
This commit is contained in:
@@ -75,7 +75,8 @@ def getMetadata(release):
|
||||
track.artist = metadata.artist
|
||||
track.title = t.title
|
||||
else:
|
||||
track.artist = t.artist.name
|
||||
# various artists discs can have tracks with no artist
|
||||
track.artist = t.artist and t.artist.name or release.artist.name
|
||||
track.title = t.title
|
||||
metadata.tracks.append(track)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user