diff options
Diffstat (limited to 'ui/subscription_add.go')
-rw-r--r-- | ui/subscription_add.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/subscription_add.go b/ui/subscription_add.go index e67f2510..920ceb40 100644 --- a/ui/subscription_add.go +++ b/ui/subscription_add.go @@ -36,7 +36,7 @@ func (h *handler) showAddSubscriptionPage(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("form", &form.SubscriptionForm{CategoryID: 0}) view.Set("hasProxyConfigured", config.Opts.HasHTTPClientProxyConfigured()) |