Add missing call to refresh artists

This commit is contained in:
Deluan 2020-07-22 15:37:24 -04:00
parent d4a5508f6a
commit 040c7f1e7d
1 changed files with 5 additions and 4 deletions

View File

@ -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