summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerene-Arc <33189705+Serene-Arc@users.noreply.github.com>2023-11-24 14:27:23 +1000
committerSerene-Arc <33189705+Serene-Arc@users.noreply.github.com>2023-11-24 14:27:23 +1000
commitfc4d7673d3a5472030dd747e1252d6dcc889b936 (patch)
tree7765f3296153435d7647edc287c0de92120e3b06
parent2032729375ea713b6e8e03650b49f64e5c61ae1d (diff)
Revert line change behaviour
-rwxr-xr-xbeets/ui/commands.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/beets/ui/commands.py b/beets/ui/commands.py
index ad4f7821d..824b79e7c 100755
--- a/beets/ui/commands.py
+++ b/beets/ui/commands.py
@@ -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.