diff --git a/vrobbler/apps/scrobbles/tsv.py b/vrobbler/apps/scrobbles/tsv.py index 7d7a237..2cc5891 100644 --- a/vrobbler/apps/scrobbles/tsv.py +++ b/vrobbler/apps/scrobbles/tsv.py @@ -37,7 +37,7 @@ def process_audioscrobbler_tsv_file(file_path, user_id, user_tz=None): ) continue artist = get_or_create_artist(row[0]) - album = get_or_create_album(row[1], artist) + album = get_or_create_album(row[1], artist, row[7]) track = get_or_create_track( title=row[2],