fix proxy to handle other image extensions instead of only jpeg

This commit is contained in:
rramiachraf 2022-10-24 20:51:39 +01:00
parent 8849d67cf1
commit 409f49a4c5
2 changed files with 24 additions and 4 deletions

View file

@ -24,7 +24,7 @@ func main() {
r.Use(securityHeaders)
r.HandleFunc("/{id}-lyrics", lyricsHandler)
r.HandleFunc("/images/{filename}.jpg", proxyHandler)
r.HandleFunc("/images/{filename}.{ext}", proxyHandler)
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
server := &http.Server{