feat(subsonic): bump image cache expiration

This commit is contained in:
sentriz
2024-09-03 12:43:10 +01:00
parent a1d929e486
commit bbe16b7555

View File

@@ -64,7 +64,7 @@ func (c *Controller) ServeGetCoverArt(w http.ResponseWriter, r *http.Request) *s
return nil
}
w.Header().Set("Cache-Control", "public, max-age=3600")
w.Header().Set("Cache-Control", "public, max-age=1209600")
http.ServeFile(w, r, cachePath)
return nil