Add missing call to refresh artists

This commit is contained in:
Deluan
2020-07-22 15:37:24 -04:00
parent d4a5508f6a
commit 040c7f1e7d
+5 -4
View File
@@ -17,15 +17,16 @@ type refreshBuffer struct {
func newRefreshBuffer(ctx context.Context, ds model.DataStore) *refreshBuffer { func newRefreshBuffer(ctx context.Context, ds model.DataStore) *refreshBuffer {
return &refreshBuffer{ return &refreshBuffer{
ctx: ctx, ctx: ctx,
ds: ds, ds: ds,
album: map[string]struct{}{}, album: map[string]struct{}{},
artist: map[string]struct{}{},
} }
} }
func (f *refreshBuffer) accumulate(mf model.MediaFile) { func (f *refreshBuffer) accumulate(mf model.MediaFile) {
f.album[mf.AlbumID] = struct{}{} f.album[mf.AlbumID] = struct{}{}
f.album[mf.AlbumArtistID] = struct{}{} f.artist[mf.AlbumArtistID] = struct{}{}
} }
type refreshCallbackFunc = func(ids ...string) error type refreshCallbackFunc = func(ids ...string) error