fix(server): allow changing local login background url

This commit is contained in:
Deluan 2024-09-27 15:18:20 -04:00
parent 1fa245d141
commit 5be73d404f
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ type Handler struct {
func NewHandler() *Handler {
h := &Handler{}
go func() {
_, _ = h.getImageList(context.Background())
_, _ = h.getImageList(log.NewContext(context.Background()))
}()
return h
}