mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add Artist (discography) size, and show sizes in Download caption
This commit is contained in:
parent
1ffc8d619e
commit
68a9be5e86
7 changed files with 70 additions and 16 deletions
|
@ -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}).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue