From 0847a927fd5385e172058f9ab1912994b1a1d059 Mon Sep 17 00:00:00 2001 From: Deluan Date: Fri, 28 Feb 2025 12:59:28 -0800 Subject: [PATCH] feat(server): removed `GenreSeparator`, replaced with `Tag.Genre.Split` Signed-off-by: Deluan --- conf/configuration.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/conf/configuration.go b/conf/configuration.go index 35cb9a30c..64c9790ae 100644 --- a/conf/configuration.go +++ b/conf/configuration.go @@ -131,8 +131,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 { @@ -487,7 +486,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)