mirror of
https://github.com/beetbox/beets.git
synced 2026-01-31 04:21:42 +01:00
Revert line change behaviour
This commit is contained in:
parent
2032729375
commit
fc4d7673d3
1 changed files with 6 additions and 3 deletions
|
|
@ -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 left != right:
|
||||
lines.append((left, right))
|
||||
else:
|
||||
if config["import"]["detail"]:
|
||||
lines.append((left, right))
|
||||
self.print_tracklist(lines)
|
||||
|
||||
# Missing and unmatched tracks.
|
||||
|
|
|
|||
Loading…
Reference in a new issue