aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/icon.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/icon.go')
-rw-r--r--api/icon.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/api/icon.go b/api/icon.go
index 1954769..406e6a6 100644
--- a/api/icon.go
+++ b/api/icon.go
@@ -11,16 +11,15 @@ import (
"miniflux.app/http/response/json"
)
-// FeedIcon returns a feed icon.
-func (c *Controller) FeedIcon(w http.ResponseWriter, r *http.Request) {
+func (h *handler) feedIcon(w http.ResponseWriter, r *http.Request) {
feedID := request.RouteInt64Param(r, "feedID")
- if !c.store.HasIcon(feedID) {
+ if !h.store.HasIcon(feedID) {
json.NotFound(w, r)
return
}
- icon, err := c.store.IconByFeedID(request.UserID(r), feedID)
+ icon, err := h.store.IconByFeedID(request.UserID(r), feedID)
if err != nil {
json.ServerError(w, r, err)
return