From 637c909e9384e2787576cb3f9090a6224c62002f Mon Sep 17 00:00:00 2001
From: Deluan <deluan@navidrome.org>
Date: Fri, 28 Feb 2025 12:59:28 -0800
Subject: [PATCH] feat(server): removed `GenreSeparator`, replaced with
 `Tag.Genre.Split`

Signed-off-by: Deluan <deluan@navidrome.org>
---
 conf/configuration.go | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/conf/configuration.go b/conf/configuration.go
index 32d0e2e78..d5e9b407b 100644
--- a/conf/configuration.go
+++ b/conf/configuration.go
@@ -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)