Fix fetching artwork when importing tsv

This commit is contained in:
2023-02-07 01:30:04 -05:00
parent 5e7c8ff137
commit 9590cd0f60

View File

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