diff options
author | 2020-09-27 16:01:06 -0700 | |
---|---|---|
committer | 2020-09-27 20:04:48 -0700 | |
commit | c394a61a4e1fe395191262ed1ccaf70b90a71484 (patch) | |
tree | ca3080c4eeb29f3a01d47676be9521334e0696cd /ui/subscription_choose.go | |
parent | 16b7b3bc3e4237abbacdf8695a685ca9a03dc5bb (diff) | |
download | v2-c394a61a4e1fe395191262ed1ccaf70b90a71484.tar.gz v2-c394a61a4e1fe395191262ed1ccaf70b90a71484.tar.zst v2-c394a61a4e1fe395191262ed1ccaf70b90a71484.zip |
Add Prometheus exporter
Diffstat (limited to 'ui/subscription_choose.go')
-rw-r--r-- | ui/subscription_choose.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/subscription_choose.go b/ui/subscription_choose.go index 3df6e13a..68390e18 100644 --- a/ui/subscription_choose.go +++ b/ui/subscription_choose.go @@ -36,7 +36,7 @@ func (h *handler) showChooseSubscriptionPage(w http.ResponseWriter, r *http.Requ view.Set("menu", "feeds") 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("defaultUserAgent", client.DefaultUserAgent) subscriptionForm := form.NewSubscriptionForm(r) |