diff options
Diffstat (limited to 'ui/subscription_bookmarklet.go')
-rw-r--r-- | ui/subscription_bookmarklet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/subscription_bookmarklet.go b/ui/subscription_bookmarklet.go index bf1674ea..3b2c849e 100644 --- a/ui/subscription_bookmarklet.go +++ b/ui/subscription_bookmarklet.go @@ -39,7 +39,7 @@ func (h *handler) bookmarklet(w http.ResponseWriter, r *http.Request) { 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) view.Set("hasProxyConfigured", config.Opts.HasHTTPClientProxyConfigured()) |