Fix artwork caching

This commit is contained in:
Deluan 2022-12-27 12:54:51 -05:00 committed by Deluan Quintão
parent 92ddae4a65
commit 722a00cacf
5 changed files with 52 additions and 27 deletions

View file

@ -6,6 +6,7 @@ import (
"io"
"net/http"
"regexp"
"time"
"github.com/navidrome/navidrome/conf"
"github.com/navidrome/navidrome/consts"
@ -55,9 +56,10 @@ func (api *Router) GetCoverArt(w http.ResponseWriter, r *http.Request) (*respons
id := utils.ParamString(r, "id")
size := utils.ParamInt(r, "size", 0)
imgReader, lastUpdate, err := api.artwork.Get(r.Context(), id, size)
w.Header().Set("cache-control", "public, max-age=315360000")
w.Header().Set("last-modified", lastUpdate.Format(time.RFC1123))
imgReader, err := api.artwork.Get(r.Context(), id, size)
switch {
case errors.Is(err, context.Canceled):
return nil, nil