diff --git a/beets/ui/commands.py b/beets/ui/commands.py index ad4f7821d..439858477 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -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. diff --git a/docs/changelog.rst b/docs/changelog.rst index 1bbe53483..e573c6d52 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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: