mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Do not attach Genres to the "Various Artists" artist
This commit is contained in:
parent
73659e5669
commit
e17d436902
1 changed files with 4 additions and 0 deletions
|
@ -11,6 +11,7 @@ import (
|
|||
"github.com/astaxie/beego/orm"
|
||||
"github.com/deluan/rest"
|
||||
"github.com/navidrome/navidrome/conf"
|
||||
"github.com/navidrome/navidrome/consts"
|
||||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/utils"
|
||||
|
@ -66,6 +67,9 @@ func (r *artistRepository) Put(a *model.Artist) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if a.ID == consts.VariousArtistsID {
|
||||
return r.updateGenres(a.ID, r.tableName, nil)
|
||||
}
|
||||
return r.updateGenres(a.ID, r.tableName, a.Genres)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue