diff options
Diffstat (limited to 'ui/history_entries.go')
-rw-r--r-- | ui/history_entries.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/history_entries.go b/ui/history_entries.go index 7bee3946..efeb1d57 100644 --- a/ui/history_entries.go +++ b/ui/history_entries.go @@ -50,7 +50,7 @@ func (h *handler) showHistoryPage(w http.ResponseWriter, r *http.Request) { view.Set("menu", "history") 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("hasSaveEntry", h.store.HasSaveEntry(user.ID)) html.OK(w, r, view.Render("history_entries")) |