Merge remote-tracking branch 'upstream/master' into deezer_error

This commit is contained in:
Alok Saboo 2023-12-01 08:40:58 -05:00
commit 079936c826
2 changed files with 8 additions and 3 deletions

View file

@ -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.

View file

@ -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: