diff options
Diffstat (limited to 'ui/api_key_create.go')
-rw-r--r-- | ui/api_key_create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/api_key_create.go b/ui/api_key_create.go index 87f87394..c33f8d0e 100644 --- a/ui/api_key_create.go +++ b/ui/api_key_create.go @@ -28,7 +28,7 @@ func (h *handler) showCreateAPIKeyPage(w http.ResponseWriter, r *http.Request) { view.Set("menu", "settings") 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_api_key")) } |