summaryrefslogtreecommitdiff
path: root/ui/category_create.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/category_create.go')
-rw-r--r--ui/category_create.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/category_create.go b/ui/category_create.go
index d8fe2cfa..c61b2407 100644
--- a/ui/category_create.go
+++ b/ui/category_create.go
@@ -25,7 +25,7 @@ func (h *handler) showCreateCategoryPage(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))
html.OK(w, r, view.Render("create_category"))
}