mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Do not empty old artist metadata (#2423)
This commit is contained in:
parent
7a858a2db3
commit
79870b1090
4 changed files with 6 additions and 5 deletions
|
@ -142,7 +142,8 @@ func (r *refresher) refreshArtists(ctx context.Context, ids ...string) error {
|
|||
// Force a external metadata lookup on next access
|
||||
a.ExternalInfoUpdatedAt = time.Time{}
|
||||
|
||||
err := repo.Put(&a)
|
||||
// Do not remove old metadata
|
||||
err := repo.Put(&a, "album_count", "genres", "external_info_updated_at", "mbz_artist_id", "name", "order_artist_name", "size", "sort_artist_name", "song_count")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue