Compare commits

...

2 Commits
0.8.4 ... 0.8.5

Author SHA1 Message Date
8ba8ceefb8 Bump version to 0.8.5 2023-02-07 01:30:38 -05:00
9590cd0f60 Fix fetching artwork when importing tsv 2023-02-07 01:30:04 -05:00
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "vrobbler" name = "vrobbler"
version = "0.8.4" version = "0.8.5"
description = "" description = ""
authors = ["Colin Powell <colin@unbl.ink>"] authors = ["Colin Powell <colin@unbl.ink>"]

View File

@ -72,6 +72,7 @@ def process_audioscrobbler_tsv_file(file_path, user_tz=None):
] ]
) )
album.artists.add(artist) album.artists.add(artist)
album.fetch_artwork()
track, track_created = Track.objects.get_or_create( track, track_created = Track.objects.get_or_create(
title=row[2], title=row[2],