mirror of
https://github.com/beetbox/beets.git
synced 2026-01-04 15:03:22 +01:00
Oops. Forgot to actually stage the correct file.
This commit is contained in:
parent
76b3212e78
commit
8a00791ecc
1 changed files with 3 additions and 1 deletions
|
|
@ -314,7 +314,9 @@ class DiscogsPlugin(BeetsPlugin):
|
|||
# Only real tracks have `position`. Otherwise, it's an index track.
|
||||
if track['position']:
|
||||
index += 1
|
||||
tracks.append(self.get_track_info(track, index))
|
||||
ti = self.get_track_info(track, index)
|
||||
ti.alt_track_no = track['position']
|
||||
tracks.append(ti)
|
||||
else:
|
||||
index_tracks[index + 1] = track['title']
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue