Fix Artist full_text refresh

This commit is contained in:
Deluan 2020-11-02 10:26:41 -05:00
parent 7819e834c8
commit 9bcd606fe8

View file

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