feat(server/m7-363): thread BrandingConfig through server.New

This commit is contained in:
2026-05-03 17:17:52 -04:00
parent cd50ffd77d
commit 46ea9a761a
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ func run() error {
srv := server.New(logger, pool, scanner, subsonic.Config{
AllowPlaintextPassword: cfg.Subsonic.AllowPlaintextPassword,
}, cfg.Events, cfg.Recommendation, cfg.Storage.DataDir)
}, cfg.Events, cfg.Recommendation, cfg.Storage.DataDir, cfg.Branding)
httpServer := &http.Server{
Addr: cfg.Server.Address,
Handler: srv.Router(),