mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 12:32:33 +01:00
Fix comparison
This commit is contained in:
parent
2892be9892
commit
9dd59058fe
1 changed files with 1 additions and 1 deletions
|
|
@ -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"]:
|
||||
|
|
|
|||
Loading…
Reference in a new issue