mirror of
https://github.com/beetbox/beets.git
synced 2026-01-01 21:42:48 +01:00
Merge remote-tracking branch 'upstream/master' into deezer_error
This commit is contained in:
commit
079936c826
2 changed files with 8 additions and 3 deletions
|
|
@ -680,10 +680,13 @@ class AlbumChange(ChangeRepresentation):
|
|||
# Save new medium details for future comparison.
|
||||
medium, disctitle = track_info.medium, track_info.disctitle
|
||||
|
||||
if config["import"]["detail"]:
|
||||
# Construct the line tuple for the track.
|
||||
left, right = self.make_line(item, track_info)
|
||||
# Construct the line tuple for the track.
|
||||
left, right = self.make_line(item, track_info)
|
||||
if right["contents"] != "":
|
||||
lines.append((left, right))
|
||||
else:
|
||||
if config["import"]["detail"]:
|
||||
lines.append((left, right))
|
||||
self.print_tracklist(lines)
|
||||
|
||||
# Missing and unmatched tracks.
|
||||
|
|
|
|||
|
|
@ -265,6 +265,8 @@ Bug fixes:
|
|||
a null path that can't be removed.
|
||||
* Fix bug where empty artist and title fields would return None instead of an
|
||||
empty list in the discord plugin. :bug:`4973`
|
||||
* Fix bug regarding displaying tracks that have been changed not being
|
||||
displayed unless the detail configuration is enabled.
|
||||
|
||||
For packagers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue