From 9590cd0f60882a69e5c7041923fd93c8f7fa3558 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 7 Feb 2023 01:30:04 -0500 Subject: [PATCH] Fix fetching artwork when importing tsv --- vrobbler/apps/scrobbles/tsv.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vrobbler/apps/scrobbles/tsv.py b/vrobbler/apps/scrobbles/tsv.py index 4bd9d9d..54b0160 100644 --- a/vrobbler/apps/scrobbles/tsv.py +++ b/vrobbler/apps/scrobbles/tsv.py @@ -72,6 +72,7 @@ def process_audioscrobbler_tsv_file(file_path, user_tz=None): ] ) album.artists.add(artist) + album.fetch_artwork() track, track_created = Track.objects.get_or_create( title=row[2],