Add Artist (discography) size, and show sizes in Download caption

This commit is contained in:
Deluan 2020-10-12 21:21:28 -04:00
parent 1ffc8d619e
commit 68a9be5e86
7 changed files with 70 additions and 16 deletions

View file

@ -133,7 +133,7 @@ func (r *artistRepository) refresh(ids ...string) error {
var artists []refreshArtist
sel := Select("f.album_artist_id as id", "f.album_artist as name", "count(*) as album_count", "a.id as current_id",
"f.sort_album_artist_name as sort_artist_name", "f.order_album_artist_name as order_artist_name",
"sum(f.song_count) as song_count").
"sum(f.song_count) as song_count", "sum(f.size) as size").
From("album f").
LeftJoin("artist a on f.album_artist_id = a.id").
Where(Eq{"f.album_artist_id": ids}).