diff options
Diffstat (limited to 'ui/entry_category.go')
-rw-r--r-- | ui/entry_category.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/entry_category.go b/ui/entry_category.go index c2602572..d42dc020 100644 --- a/ui/entry_category.go +++ b/ui/entry_category.go @@ -80,7 +80,7 @@ func (h *handler) showCategoryEntryPage(w http.ResponseWriter, r *http.Request) view.Set("menu", "categories") view.Set("user", user) view.Set("countUnread", h.store.CountUnreadEntries(user.ID)) - view.Set("countErrorFeeds", h.store.CountErrorFeeds(user.ID)) + view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID)) view.Set("hasSaveEntry", h.store.HasSaveEntry(user.ID)) html.OK(w, r, view.Render("entry")) |