From 9dd59058fe229ff742310829b624d516ecdca358 Mon Sep 17 00:00:00 2001 From: Serene-Arc <33189705+Serene-Arc@users.noreply.github.com> Date: Fri, 24 Nov 2023 18:10:54 +1000 Subject: [PATCH] Fix comparison --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 824b79e7c..439858477 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -682,7 +682,7 @@ class AlbumChange(ChangeRepresentation): # Construct the line tuple for the track. left, right = self.make_line(item, track_info) - if left != right: + if right["contents"] != "": lines.append((left, right)) else: if config["import"]["detail"]: