Do not empty old artist metadata (#2423)

This commit is contained in:
Kendall Garner 2023-11-17 00:20:37 +00:00 committed by GitHub
parent 7a858a2db3
commit 79870b1090
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View file

@ -60,10 +60,10 @@ func (r *artistRepository) Exists(id string) (bool, error) {
return r.exists(Select().Where(Eq{"artist.id": id}))
}
func (r *artistRepository) Put(a *model.Artist) error {
func (r *artistRepository) Put(a *model.Artist, colsToUpdate ...string) error {
a.FullText = getFullText(a.Name, a.SortArtistName)
dba := r.fromModel(a)
_, err := r.put(dba.ID, dba)
_, err := r.put(dba.ID, dba, colsToUpdate...)
if err != nil {
return err
}