mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add genre tables, read multiple-genres from tags
This commit is contained in:
parent
1f0314021e
commit
7cd3a8ba67
13 changed files with 205 additions and 53 deletions
|
@ -74,7 +74,8 @@ type configOptions struct {
|
|||
}
|
||||
|
||||
type scannerOptions struct {
|
||||
Extractor string
|
||||
Extractor string
|
||||
GenreSeparators string
|
||||
}
|
||||
|
||||
type lastfmOptions struct {
|
||||
|
@ -214,6 +215,8 @@ func init() {
|
|||
viper.SetDefault("reverseproxywhitelist", "")
|
||||
|
||||
viper.SetDefault("scanner.extractor", "taglib")
|
||||
viper.SetDefault("scanner.genreseparators", ";/")
|
||||
|
||||
viper.SetDefault("agents", "lastfm,spotify")
|
||||
viper.SetDefault("lastfm.enabled", true)
|
||||
viper.SetDefault("lastfm.language", "en")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue