fix for overview
This commit is contained in:
@@ -161,6 +161,8 @@ class OverView(LoginRequiredMixin, View):
|
||||
if not artists.get(artist.name):
|
||||
artists[artist.name] = {}
|
||||
for artist in vote.track.album.artists.all():
|
||||
if not artists.get(artist.name):
|
||||
artists[artist.name] = {}
|
||||
if not artists[artist.name].get(vote.track.album.name):
|
||||
artists[artist.name][vote.track.album.name] = []
|
||||
artists[artist.name][vote.track.album.name] += [vote.track]
|
||||
|
||||
Reference in New Issue
Block a user