use comma when joining artists

This commit is contained in:
sentriz
2023-09-10 16:48:06 +01:00
parent 07a7869836
commit ddd160545c
3 changed files with 6 additions and 15 deletions

View File

@@ -83,16 +83,6 @@ func NewTrackByTags(t *db.Track, album *db.Album) *TrackChild {
})
ret.ArtistID = album.Artists[0].SID()
}
// replace tags that we're present
if ret.Title == "" {
ret.Title = "<title>"
}
if ret.Artist == "" {
ret.Artist = "<artist>"
}
if ret.Album == "" {
ret.Album = "<album>"
}
return ret
}