From 36d7950859c4e5f5ab9d15b9fbfdc5f9f9c3d403 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 12 Feb 2023 16:54:45 -0500 Subject: [PATCH] Fix bug in scrobbling duplicate tracks from TSV --- vrobbler/apps/scrobbles/tsv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/tsv.py b/vrobbler/apps/scrobbles/tsv.py index 54b0160..c998d65 100644 --- a/vrobbler/apps/scrobbles/tsv.py +++ b/vrobbler/apps/scrobbles/tsv.py @@ -78,10 +78,10 @@ def process_audioscrobbler_tsv_file(file_path, user_tz=None): title=row[2], artist=artist, album=album, + musicbrainz_id=row[7], ) if track_created: - track.musicbrainz_id = row[7] track.run_time = int(row[4]) track.run_time_ticks = int(row[4]) * 1000 track.save()