mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
fix(server): allow changing local login background url
This commit is contained in:
parent
1fa245d141
commit
5be73d404f
2 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ func startServer(ctx context.Context) func() error {
|
||||||
a.MountRouter("Profiling", "/debug", middleware.Profiler())
|
a.MountRouter("Profiling", "/debug", middleware.Profiler())
|
||||||
}
|
}
|
||||||
if strings.HasPrefix(conf.Server.UILoginBackgroundURL, "/") {
|
if strings.HasPrefix(conf.Server.UILoginBackgroundURL, "/") {
|
||||||
a.MountRouter("Background images", consts.DefaultUILoginBackgroundURL, backgrounds.NewHandler())
|
a.MountRouter("Background images", conf.Server.UILoginBackgroundURL, backgrounds.NewHandler())
|
||||||
}
|
}
|
||||||
return a.Run(ctx, conf.Server.Address, conf.Server.Port, conf.Server.TLSCert, conf.Server.TLSKey)
|
return a.Run(ctx, conf.Server.Address, conf.Server.Port, conf.Server.TLSCert, conf.Server.TLSKey)
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ type Handler struct {
|
||||||
func NewHandler() *Handler {
|
func NewHandler() *Handler {
|
||||||
h := &Handler{}
|
h := &Handler{}
|
||||||
go func() {
|
go func() {
|
||||||
_, _ = h.getImageList(context.Background())
|
_, _ = h.getImageList(log.NewContext(context.Background()))
|
||||||
}()
|
}()
|
||||||
return h
|
return h
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue