Allow any HTTP methods for public images endpoint. Fix artist covers in Subtracks

This commit is contained in:
Deluan 2023-01-14 10:17:21 -05:00
parent 16c869ec86
commit dfbf86c577
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ func (p *Router) routes() http.Handler {
r.Group(func(r chi.Router) {
r.Use(server.URLParamsMiddleware)
r.Get("/img/{id}", p.handleImages)
r.HandleFunc("/img/{id}", p.handleImages)
})
return r
}