Add genre tables, read multiple-genres from tags

This commit is contained in:
Deluan 2021-07-15 19:53:40 -04:00 committed by Deluan Quintão
parent 1f0314021e
commit 7cd3a8ba67
13 changed files with 205 additions and 53 deletions

View file

@ -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")