feat(server): removed GenreSeparator, replaced with Tag.Genre.Split

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-02-28 12:59:28 -08:00
parent 453873fa26
commit 637c909e93

View file

@ -130,8 +130,7 @@ type scannerOptions struct {
WatcherWait time.Duration
ScanOnStartup bool
Extractor string
GenreSeparators string // Deprecated: BFR Update docs
GroupAlbumReleases bool // Deprecated: BFR Update docs
GroupAlbumReleases bool // Deprecated: BFR Update docs
}
type TagConf struct {
@ -474,7 +473,6 @@ func init() {
viper.SetDefault("scanner.enabled", true)
viper.SetDefault("scanner.schedule", "0")
viper.SetDefault("scanner.extractor", consts.DefaultScannerExtractor)
viper.SetDefault("scanner.genreseparators", ";/,")
viper.SetDefault("scanner.groupalbumreleases", false)
viper.SetDefault("scanner.watcherwait", consts.DefaultWatcherWait)
viper.SetDefault("scanner.scanonstartup", true)