mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add missing call to refresh artists
This commit is contained in:
parent
d4a5508f6a
commit
040c7f1e7d
1 changed files with 5 additions and 4 deletions
|
@ -17,15 +17,16 @@ type refreshBuffer struct {
|
|||
|
||||
func newRefreshBuffer(ctx context.Context, ds model.DataStore) *refreshBuffer {
|
||||
return &refreshBuffer{
|
||||
ctx: ctx,
|
||||
ds: ds,
|
||||
album: map[string]struct{}{},
|
||||
ctx: ctx,
|
||||
ds: ds,
|
||||
album: map[string]struct{}{},
|
||||
artist: map[string]struct{}{},
|
||||
}
|
||||
}
|
||||
|
||||
func (f *refreshBuffer) accumulate(mf model.MediaFile) {
|
||||
f.album[mf.AlbumID] = struct{}{}
|
||||
f.album[mf.AlbumArtistID] = struct{}{}
|
||||
f.artist[mf.AlbumArtistID] = struct{}{}
|
||||
}
|
||||
|
||||
type refreshCallbackFunc = func(ids ...string) error
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue