Oops. Forgot to actually stage the correct file.

This commit is contained in:
Mike Cameron 2017-01-01 04:52:32 -05:00
parent 76b3212e78
commit 8a00791ecc

View file

@ -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']