aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/feed_icon.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/feed_icon.go')
-rw-r--r--ui/feed_icon.go13
1 files changed, 9 insertions, 4 deletions
diff --git a/ui/feed_icon.go b/ui/feed_icon.go
index 0aa7089..63aa050 100644
--- a/ui/feed_icon.go
+++ b/ui/feed_icon.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
-package ui // import "miniflux.app/ui"
+package ui // import "miniflux.app/ui"
import (
"net/http"
@@ -18,14 +18,19 @@ func (c *Controller) ShowIcon(w http.ResponseWriter, r *http.Request) {
iconID := request.RouteInt64Param(r, "iconID")
icon, err := c.store.IconByID(iconID)
if err != nil {
- html.ServerError(w, err)
+ html.ServerError(w, r, err)
return
}
if icon == nil {
- html.NotFound(w)
+ html.NotFound(w, r)
return
}
- response.Cache(w, r, icon.MimeType, icon.Hash, icon.Content, 72*time.Hour)
+ response.New(w, r).WithCaching(icon.Hash, 72*time.Hour, func(b *response.Builder) {
+ b.WithHeader("Content-Type", icon.MimeType)
+ b.WithBody(icon.Content)
+ b.WithoutCompression()
+ b.Write()
+ })
}