Log warning when artist has a MBID of Various Artists

This commit is contained in:
Deluan 2021-07-18 18:28:51 -04:00
parent e61cf3217d
commit 44e7502aef
5 changed files with 32 additions and 29 deletions

View file

@ -198,7 +198,7 @@ func (r *artistRepository) refresh(ids ...string) error {
} else {
toInsert++
}
ar.MbzArtistID = getMbzId(r.ctx, ar.MbzArtistID, r.tableName, ar.Name)
ar.MbzArtistID = getMostFrequentMbzID(r.ctx, ar.MbzArtistID, r.tableName, ar.Name)
err := r.Put(&ar.Artist)
if err != nil {
return err