Revert line change behaviour

This commit is contained in:
Serene-Arc 2023-11-24 14:27:23 +10:00
parent 2032729375
commit fc4d7673d3

View file

@ -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.