mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-05 09:53:18 +03:00
Remove unnecessary type casting
This commit is contained in:
parent
6c05930444
commit
8c1975b70f
4
app.go
4
app.go
@ -86,9 +86,9 @@ func FileServer(r chi.Router, path string, root http.FileSystem) {
|
|||||||
}
|
}
|
||||||
path += "*"
|
path += "*"
|
||||||
|
|
||||||
r.Get(path, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
r.Get(path, func(w http.ResponseWriter, r *http.Request) {
|
||||||
fs.ServeHTTP(w, r)
|
fs.ServeHTTP(w, r)
|
||||||
}))
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func InjectLogger(next http.Handler) http.Handler {
|
func InjectLogger(next http.Handler) http.Handler {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user