Skip to content

Commit

Permalink
Fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Serene-Arc committed Nov 24, 2023
1 parent 2892be9 commit fc4391e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beets/ui/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def show_match_tracks(self):

# 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"]:
Expand Down

0 comments on commit fc4391e

Please sign in to comment.