mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix Artist full_text refresh
This commit is contained in:
parent
7819e834c8
commit
9bcd606fe8
1 changed files with 1 additions and 1 deletions
|
@ -56,8 +56,8 @@ func (r *artistRepository) Exists(id string) (bool, error) {
|
|||
}
|
||||
|
||||
func (r *artistRepository) Put(a *model.Artist) error {
|
||||
a.FullText = getFullText(a.Name, a.SortArtistName)
|
||||
dba := r.fromModel(a)
|
||||
a.FullText = getFullText(dba.Name, dba.SortArtistName)
|
||||
_, err := r.put(dba.ID, dba)
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue